cpython
cpython copied to clipboard
The Python programming language
[turtle module has too few tests](https://github.com/python/cpython/blob/main/Lib/test/test_turtle.py). These are the module's public classes to review if there are test and/or implement them: - [ ] RawTurtle - [ ] ScrolledCanvas -...
# Bug report ### Bug description: **Bug Description:** A series of performance issues related to quadratic complexity has been identified in IDLE's editor. On files with very long lines, this...
# Feature or enhancement As see on [the buildbot](https://buildbot.python.org/?#/builders/1594/builds/2712/steps/6/logs/stdio), it's currently being omitted: ``` checking for libzstd >= 1.4.5... no ``` In the current build system, this will require the...
* Issue: gh-133125 ---- 📚 Documentation preview 📚: https://cpython-previews--136082.org.readthedocs.build/
# Documentation Currently, the [documentation](https://docs.python.org/3/library/zipfile.html#zipfile.ZipInfo.date_time) for `ZipInfo.date_time` is: > The time and date of the last modification to the archive member. This is a tuple of six values: > ......
# Documentation The [`__slots__` documentation](https://docs.python.org/3/reference/datamodel.html#slots) states: > The space saved over using `__dict__` can be significant. Attribute lookup speed can be significantly improved as well. In meticulous benchmarks, I've found...
* Issue: gh-134584
This is to showcase the new feature in 3.14. * Issue: gh-127604 ---- 📚 Documentation preview 📚: https://cpython-previews--136081.org.readthedocs.build/en/136081/library/faulthandler.html#example
* Issue: gh-115119 ---- 📚 Documentation preview 📚: https://cpython-previews--134078.org.readthedocs.build/
> // Windows doesn't define S_IFLNK, but posixmodule.c maps The above comment is written in https://github.com/python/cpython/commit/99d6135a157f6626fddd5d61007d363b3a14990d#diff-b5b7e4f5599916b2018e911ef423f9d3fd46cb71268e1a73c74a1c9ae2cb6791 commit, and `posixmodule.c` included such logic at that time. The commit https://github.com/python/cpython/commit/f2f373f5931be48efc3f6fa2c2faa1cca79dce75 which resolves...