cpython icon indicating copy to clipboard operation
cpython copied to clipboard

The Python programming language

Results 1387 cpython issues
Sort by recently updated
recently updated
newest added

# 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...

type-bug
OS-windows

# 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...

type-bug

* Issue: gh-121731

awaiting review
needs backport to 3.13

# 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:...

type-bug
build
3.13
3.14

# 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...

type-feature

* Issue: gh-99631 ---- 📚 Documentation preview 📚: https://cpython-previews--118065.org.readthedocs.build/

awaiting changes

**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...

type-bug
3.11
3.10
topic-importlib
3.12

# 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...

type-feature
topic-C-API