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

(cherry picked from commit f6f4022a357f70f1c40945403065e81b6c2e4854) Co-authored-by: Jan MusΓ­lek * Issue: gh-64308 ---- πŸ“š Documentation preview πŸ“š: https://cpython-previews--121743.org.readthedocs.build/

docs
awaiting review
skip news

This is a follow-up of GH-86438 and GH-23172. The `warnings` docs should include more examples to show how to match different types of warnings using both the provided functions and...

type-feature
docs
3.11
easy
3.10
3.12

BPO | [25567](https://bugs.python.org/issue25567) --- | :--- Nosy | @bitdancer, @vadmium, @The-Compiler, @willingc, @csabella, @tirkarthi, @aldwinaldwin, @HassanAbouelela, @hrik2001 PRs | python/cpython#10871python/cpython#22657 Files | [shlex_quote_bytes_support.patch](https://bugs.python.org/file40992/shlex_quote_bytes_support.patch "Uploaded as text/plain at 2015-11-10.03:27:53 by Nan...

type-feature
stdlib
easy
3.10

I tested this by running the repros in the issue on a TSAN build for 2-3 minutes each. No races reported. * Issue: gh-121546

awaiting core review
skip news
topic-free-threading

# Bug report The [ContextVar](https://docs.python.org/3/library/contextvars.html) implementation is not thread-safe in the free-threaded build: In particular, the caching is not thread-safe, although there may be other thread-safety issues as well: https://github.com/python/cpython/blob/9c08f40a613d9aee78de4ce4ec3e125d1496d148/Python/context.c#L206-L212...

type-bug
3.13
topic-free-threading
3.14

Add _Py_IsImmortalLoose() function for assertions. * Issue: gh-121528

awaiting core review
skip news
needs backport to 3.13

gh-112301: Added `-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3` to default compiler options for all builds This option adds runtime protections for glibc to abort execution when unsafe behavior is encountered.[ Here are the GNU...

awaiting review

In PR #112514 `EnumDict` was made public but was not documented. This patch adds the documentation. Resolves #112328 * Issue: gh-112328 ---- πŸ“š Documentation preview πŸ“š: https://cpython-previews--121720.org.readthedocs.build/

docs
awaiting review
skip news

# Bug report ### Bug description: sys.stdin.read() throws a TypeError if stdin has been set to be non-blocking. The code below should just exit without issue. It throws a TypeError...

type-bug
extension-modules
3.11
topic-IO
3.12
3.13

* Issue: gh-121645 ---- πŸ“š Documentation preview πŸ“š: https://cpython-previews--121646.org.readthedocs.build/

awaiting core review
topic-C-API