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

BPO | [11245](https://bugs.python.org/issue11245) --- | :--- Nosy | @warsaw, @ericvsmith, @bitdancer, @vadmium, @mitya57, @soltysh, @ankostis, @jdek Dependencies | bpo-18921: In imaplib, cached capabilities may be out of date after login...

type-feature
stdlib
3.9
topic-email

# Documentation In the [OrderedDict Objects](https://docs.python.org/3/library/collections.html#ordereddict-objects) documentation it states: "A regular [dict](https://docs.python.org/3/library/stdtypes.html#dict) does not have an efficient equivalent for OrderedDict’s od.move_to_end(k, last=False) which moves the key and its associated value...

docs

# Bug report ### Bug description: Minimal example: ```python from pathlib import Path import resource import random import string def randomword() -> str: letters = string.ascii_lowercase return "".join(random.choice(letters) for _...

type-bug

This fixes the problem reading history files created with previous versions of python (that where using GNU readline). Checks that the file was created by readline and change the encoding...

# Bug report ### Bug description: When using the version of Python (3.9.6) that comes with Apple at `/usr/bin/python`, or when installing the latest version of Python (3.12.3) via Homebrew,...

type-bug
3.13
topic-repl

(cherry picked from commit 7982363b479e22fffc72481e54c9f40ace8a0021)

skip issue
awaiting review
skip news

Previously, this workflow would run on related file changes and not contribute the the overall outcome of the CI run. This patch turns it into a reusable workflow, integrating it...

awaiting review

# Enhancement By adding a C accelerator, it is possible to improve the running time of `fnmatch.filter` and `fnmatch.translate` (the previous proposal is no longer correct since `fnmatch(3)` does not...

type-feature
performance

Fixses inconsistent return types between `SSLObject` and `SSLSocket` as described in `gh-118656` * Issue: gh-118658

awaiting review

This is to resolve #86997 * Issue: gh-86997