cpython
cpython copied to clipboard
The Python programming language
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...
# 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...
# 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 _...
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,...
(cherry picked from commit 7982363b479e22fffc72481e54c9f40ace8a0021)
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...
# 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...
Fixses inconsistent return types between `SSLObject` and `SSLSocket` as described in `gh-118656` * Issue: gh-118658
This is to resolve #86997 * Issue: gh-86997