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

# Crash report ### What happened? Minimal reproducer: ``` class i: if[super for()in e]:d

type-crash

cc @mdickinson * Issue: gh-101575

docs
awaiting review
skip news

# Bug report ### Bug description: 1. Open `./python.exe` 2. `import sys; code = sys._getframe(1).f_code` 3. Type `code.co_` and hit tab 4. This: ### CPython versions tested on: CPython main...

type-bug
3.13
topic-repl

The docs for `os.splice` misses the `flags` argument but it is documented in `posixmodule.c`: https://github.com/python/cpython/blob/64ab9f7d5c7cbe5ef997c7d841151e0e71e7f582/Modules/posixmodule.c#L11565-L11566 Ref: https://github.com/python/typeshed/pull/10771 ---- :books: Documentation preview :books:: https://cpython-previews--109847.org.readthedocs.build/

docs
skip issue
awaiting core review
skip news

If the interpreter shows a warning, the new repl prompt cursor moves after the warning. * Issue: gh-119205

awaiting review

closes #90149 * Issue: gh-90149

awaiting review

# Bug report ### Bug description: I have a machine where there was a leftover setuptools-57.4.0.dist-info directory after package removal. `/lib/python3.10/site-packages/setuptools-57.4.0.dist-info` --> this directory is empty And newer setuptools `/lib/python3.10/site-packages/setuptools-65.5.1-py3.10.egg-info/`...

type-bug

Fixes #109176. * Issue: gh-109176

awaiting core review
skip news
interpreter-core

# Bug report ### Bug description: ```python from functools import update_wrapper def my_type(*args): pass t = update_wrapper(my_type, type) ``` This works on Python ≤ 3.11, and I think this is...

type-bug
stdlib
topic-typing
3.12
3.13
3.14

# Bug report ### Bug description: I left a few TODOs in the compiler code from its early development. They are no longer relevant. For example, they comment on issues...

type-bug
easy