cpython
cpython copied to clipboard
The Python programming language
# Bug report A clear and concise description of what the bug is. Include a minimal, reproducible example (https://stackoverflow.com/help/minimal-reproducible-example), if possible. # Your environment ``` from enum import Flag, verify,...
The ``structmember.h`` header is deprecated, though it continues to be available and there are no plans to remove it. There are no deprecation warnings. Old code can stay unchanged (unless...
While I check the @ericsnowcurrently 's checklist: https://github.com/ericsnowcurrently/multi-core-python/wiki/0-The-Plan I found that the syslog module still uses the global variable for the following variables. * S_ident_o * S_log_open Both variables are...
Reference: [PEP 594 – Removing dead batteries from the standard library](https://peps.python.org/pep-0594/). This issue tracks removal of the following modules: - Demote from the public API into the test helpers -...
BPO | [45953](https://bugs.python.org/issue45953) --- | :--- Nosy | @gvanrossum, @vstinner, @markshannon, @ericsnowcurrently, @JulienPalard, @miss-islington, @brandtbucher PRs | python/cpython#29883python/cpython#30092python/cpython#30096python/cpython#30588python/cpython#30589python/cpython#30590python/cpython#31038 *Note: these values reflect the state of the issue at the time...
If the following is implemented using static types C API, the derived class doesn't inherit `__getitem__`: ```python class SimpleMap: def __getitem__(self, key): return 'value' class SimpleObject: pass class DerivedObject(SimpleObject, SimpleMap):...
BPO | [14130](https://bugs.python.org/issue14130) --- | :--- Nosy | @ncoghlan, @abalkin, @pitrou, @pv, @skrah *Note: these values reflect the state of the issue at the time it was migrated and might...
Turns out `ld` shipped with Xcode 14+ emits a warning when using `-`undefined dynamic_lookup.` ``` ld: warning: -undefined dynamic_lookup may not work with chained fixups ``` Some investigation reveals that...
With this we can run just codegen from python, and get the un-optimized instruction sequence for an AST. * Issue: gh-87092
BPO | [41095](https://bugs.python.org/issue41095) --- | :--- Nosy | @vstinner, @serhiy-storchaka, @1st1, @asottile PRs | python/cpython#21066 *Note: these values reflect the state of the issue at the time it was migrated...