cpython
cpython copied to clipboard
The Python programming language
The Limited API is currently tested in `xxlimited` module(s), which isn't a great location since the module serves as a “tutorial” example of how to make a module. There's no...
* Issue: gh-95913
BPO | [37042](https://bugs.python.org/issue37042) --- | :--- Nosy | @asvetlov, @1st1, @ixje Files | [test_leak_minimal.py](https://bugs.python.org/file48356/test_leak_minimal.py "Uploaded as text/plain at 2019-05-25.12:09:54 by @ixje"): minimal example that bleeds memory[test_leak_minimal_mem_consumption.png](https://bugs.python.org/file48357/test_leak_minimal_mem_consumption.png "Uploaded as image/png at...
Remove references to CGI library because it has deprecated since version 3.11 and will be removed in version 3.13 https://docs.python.org/3.12/library/cgi.html * Issue: gh-95413
I think that the discussion of borrowing in Section 1.10 makes an untrue assumption. In specific, I think that "When you pass an object reference into another function, in general,...
Because MacOS likes to do things differently, the DWARF debugging information is not included by default in the final executables and shared libraries. Instead, MacOS has a separate linker `dsymutil`...
A recent update to Windows 11 is causing abnormalities in the test suite. Note that the tests are not *failing*, but they are emitting error messages. I believe the offending...
https://github.com/python/cpython/issues/95986 * Issue: gh-95986
# Bug report ```py from typing import Any class Foo(Any): ... print(repr(Foo)) # => typing.Any not as I would expect ``` I believe https://github.com/python/cpython/blob/e8259e047c42976427b08f100b9d8ba52db7ee69/Lib/typing.py#L495-L496 needs to be changed to ```py...