cpython
cpython copied to clipboard
The Python programming language
Extension modules generated by SWIG up to version 4.1.0 clear the Py_TPFLAGS_VALID_VERSION_TAG bit from tp_flags when modifying the type, as they should, but do not update tp_version_tag as typeobject.c expects....
BPO | [40799](https://bugs.python.org/issue40799) --- | :--- Nosy | @vstinner, @ezio-melotti, @serhiy-storchaka, @pganssle, @shihai1991 PRs | python/cpython#20472 *Note: these values reflect the state of the issue at the time it was...
* Issue: gh-99205
# Bug report Two similar drawings can widely differ in terms of speed, resulting in a counter-intuitive experience for the end-user. This is independent from the plateform (OS, architecture) and...
This code works ``` class A: data = ' ' remains = [c for c in data] ``` This code gives us `NameError: name 'data' is not defined` ``` class...
Despite installing python 3.11 pkg from the python website and running the Install Certificates script which completes without error, I still get ssl certificate verify failed whenever I try to...
BPO | [41122](https://bugs.python.org/issue41122) --- | :--- Nosy | @rhettinger, @ambv, @mgrandi, @ammaraskar, @mental32, @AlexWaygood PRs | python/cpython#21471python/cpython#23212 *Note: these values reflect the state of the issue at the time it...
https://bugs.python.org/issue39734
Also mark those opcodes that have no stack effect as such (`inst(FOO)` -> `inst(FOO, (--))`). * Issue: gh-98831
This was a regression in Python 3.12.0a2 that prevented Fedora doing this: $ rm -r Modules/_decimal/libmpdec $ rm -r Modules/expat Before building Python with --with-system-libmpdec --with-system-expat. The errors were: make:...