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 chapter "When to use `__new__()` vs. `__init__()`" starts with a sample class `Coordinate(bytes, Enum)` and later use 'int' instead of bytes. I would suggest the code here...

docs

# Feature or enhancement ### Proposal: Hi, I am the maintainer of uClibc-ng (https://uclibc-ng.org) and have a question. In commit c163d7f0b67a568e9b64eeb9c1cbbaa127818596 uClibc-ng support was silently disabled. Is there any reason...

type-feature
build

BPO | [15987](https://bugs.python.org/issue15987) --- | :--- Nosy | @benjaminp, @Julian, @serhiy-storchaka, @ilevkivskyi, @mlouielu, @tonybaloney, @tonybaloney, @isidentical PRs | python/cpython#1368python/cpython#1375python/cpython#14970python/cpython#19211 *Note: these values reflect the state of the issue at the...

type-feature
stdlib

A crash of the new pyrepl was triggered by pressing up arrow when tab completion menu was displayed. Fixes #118877 While this simple fix does the trick, as @lysnikolaou mentioned...

awaiting review
topic-repl

Suppress all `OSError` exceptions from `pathlib.Path.exists()` and `is_*()` rather than a selection of more common errors as we do presently. Also adjust the implementations to call `os.path.exists()` etc, which are...

performance
awaiting core review
topic-pathlib

BPO | [46614](https://bugs.python.org/issue46614) --- | :--- Nosy | @brettcannon, @abalkin, @merwok, @pganssle, @godlygeek PRs | python/cpython#32041 *Note: these values reflect the state of the issue at the time it was...

type-feature
stdlib
3.11

# Bug report ### Bug description: ### x.py ```python xxx = 118888 ``` ### readx.py ```python def f(): with open("x.py", encoding="utf-8") as f: exec(compile(f.read(), "x.py", "exec")) return locals()["xxx"] print(f()) ```...

docs
3.13
3.14

BPO | [42643](https://bugs.python.org/issue42643) --- | :--- Nosy | @AraHaan, @sblondon, @DavidBord PRs | python/cpython#24228 *Note: these values reflect the state of the issue at the time it was migrated and...

type-feature
stdlib
3.13

# Bug report ### Bug description: The following code breaks with an attribute error: ```python import email.parser import email.policy a = 't'*46 h = f'''\ To: =?utf-8?B?dGVzdC50ZXN0LnRlc3QudGVzdEB0ZXN0LmNvbeKAiw=?= ,\r\n\t"tttest&{a}[email protected]" ,\r\n\t"tttest&{a}[email protected]" '''...

type-bug
stdlib
topic-email
3.12
3.13
3.14