cpython
cpython copied to clipboard
The Python programming language
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...
# 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...
I grouped the two CLI changes together, it is nicer to have one link to the docs section IMO. cc @tanloong * Issue: gh-133447
# 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....
# 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...
### 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...
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...
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...
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...
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....