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

# Documentation The sphinx not found extension introduced in #111084 doesn't seem to be installed when the documentation is published: https://docs.python.org/3/- This is how it's meant to look: https://cpython-previews.readthedocs.io/en/3.14/- cc...

docs

# Bug report ### Bug description: There is an unexpected SystemError which is completely outside of user code. I get it with Python 3.13.0 on Windows, but did never see...

type-bug
topic-asyncio

# Feature or enhancement ### Proposal: Currently, when `PYTHONHOME` is wrong, python says `ModuleNotFoundError: No module named 'encodings'`. This is error makes it sound like a module is missing, when...

type-feature
interpreter-core

# Feature or enhancement ### Proposal: At the moment, `argparse.BooleanOptionalAction` gives e.g. `--foo` vs `--no-foo`, whose prefix is hardcoded: https://github.com/python/cpython/blob/cd516cd1f5e94dba887353f421513fd172efadf3/Lib/argparse.py#L848 https://github.com/python/cpython/blob/cd516cd1f5e94dba887353f421513fd172efadf3/Lib/argparse.py#L863 It would be beneficial if we can change the...

type-feature
stdlib

In multiprocessing and concurrent.futures's documentations, as well as the release notes for Python 3.14. This moves the paragraph in 3.14's release notes from the deprecations section to 'Porting to Python...

docs
awaiting merge
skip news
needs backport to 3.13

# Bug report ### Bug description: ```powershell PS C:\> py -V:3.12-32 -c "import subprocess; subprocess.run(['ssh'])" Traceback (most recent call last): File "", line 1, in File "C:\Users\Brecht Machiels\AppData\Local\Programs\Python\Python312-32\Lib\subprocess.py", line 548,...

type-bug
OS-windows

BPO | [42969](https://bugs.python.org/issue42969) --- | :--- Nosy | @gpshead, @pitrou, @vstinner, @colesbury, @izbyshev, @jbms PRs | python/cpython#28525 *Note: these values reflect the state of the issue at the time it...

type-bug
interpreter-core
3.11
3.12
3.13
3.14

# Bug report ### Bug description: When using argparse to define a BooleanOptionAction that starts with "--no-", it is not possible to set the flag as True. This is counterintuitive,...

type-bug