cpython
cpython copied to clipboard
The Python programming language
# Bug report ### Bug description: After running ``` pip install peewee ``` or ``` pip install pysqlite3 ``` I run into the following error message (example with peewee). I'm...
# Bug report ### Bug description: Context: In Python 3.12 the function importlib.resources.files() was updated: https://docs.python.org/3/library/importlib.resources.html#importlib.resources.files > Changed in version 3.12: package parameter was renamed to anchor. anchor can now...
* Issue: gh-121731
# Bug report ### Bug description: # Bug description: The compilation of mimalloc on GNU/Hurd currently fails with the following error: ``` In file included from ../Objects/mimalloc/prim/prim.c:22, from ../Objects/mimalloc/static.c:37: ../Objects/mimalloc/prim/unix/prim.c:...
# Feature or enhancement ### Proposal: I propose to add a `commands` argument to `pdb.set_trace` and `pdb.Pdb.set_trace`. The `commands` fed should be a list of pdb commands that will be...
* Issue: gh-99631 ---- 📚 Documentation preview 📚: https://cpython-previews--118065.org.readthedocs.build/
* Issue: gh-121359
**Bug report** For the following tree, where `./b` is not a package, `PathFinder.find_spec("a.b")` raises an undocumented `KeyError`: ``` . ├── a │ ├── b.py └── b ``` ```python >>> from...
# Feature or enhancement Python 3.13 alpha 1 removed the private `_PyBytes_Join(sep, iterable)` function which calls `sep.join(iterable)`. mypyc uses it. Since we already have `PyUnicode_Join(sep, iterable)`, I propose to add...