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 | [46892](https://bugs.python.org/issue46892) --- | :--- Nosy | @gvanrossum, @DinoV, @asvetlov, @1st1, @kumaraditya303, @itamaro, @mpage *Note: these values reflect the state of the issue at the time it was migrated...

type-feature
topic-asyncio
interpreter-core

# Feature or enhancement ### Proposal: I will open a pr once https://github.com/python/cpython/pull/133393 is complete. General idea is to follow repl color scheme: `sqlite>`: repl magenta (i.e. `>>>`) keywords: repl...

type-feature
stdlib
topic-sqlite3

I grouped the two CLI changes together, it is nicer to have one link to the docs section IMO. cc @tanloong * Issue: gh-133447

docs
awaiting review
skip news

# Bug report ### Bug description: While trying to test cattrs on 3.14 I ran into this issue. Here's a simple reproducer that passes on 3.13, but doesn't on 3.14....

type-bug
stdlib
3.14
topic-dataclasses
3.15

# Feature or enhancement ### Proposal: Thanks to Matt's work on borrowed LOAD_FAST, we can now eliminate reference counting trivially in the JIT. Reference counting is expensive, Matt found that...

type-feature
performance
interpreter-core
topic-JIT

### Bug description: POC: ```python import urllib.request from http.cookiejar import CookieJar, DefaultCookiePolicy class FakeResponse: def __init__(self, headers=[], url=None): """ headers: list of RFC822-style 'Key: value' strings """ import email self._headers...

type-bug
stdlib

2 PRs, one adds documentation about the false positives with btrfs subvolumes & the 2nd about adding the unexpected behaviour to the docstring, so that it also shows up in...

skip news

BPO | [32414](https://bugs.python.org/issue32414) --- | :--- Nosy | @ncoghlan, @encukou, @lekma, @skrah, @ericsnowcurrently, @serhiy-storchaka PRs | python/cpython#4988python/cpython#6898 *Note: these values reflect the state of the issue at the time it...

type-bug
interpreter-core
topic-C-API

This is to catch out double deallocation bugs. Likely from a faulty .tp_dealloc allowing the GC to run before the object is untracked. This assert matches the one added to...

awaiting review
skip news
topic-free-threading

I've added `math.fmin` and `math.fmax` as I think it'd be nice to have the NaN handling as per C99. I didn't make those functions generic or accept any iterable argument....

awaiting merge