python-checkins
Thread
Date
Earlier messages
Messages by Date
2026/03/12
[Python-checkins] gh-140131: Fix REPL cursor position on Windows when module completion suggestion line hits console width (GH-140333)
ambv
2026/03/12
[Python-checkins] gh-141510: Update PyDict C API doc for frozendict (#145533)
vstinner
2026/03/12
[Python-checkins] gh-145446: Add critical section in functools module for `PyDict_Next` (GH-145487)
encukou
2026/03/12
[Python-checkins] [3.14] gh-145254: Add thread safety annotation in docs (GH-145255) (#145862)
hugovk
2026/03/12
[Python-checkins] gh-145681: do not deallocate list buffer in `_PyList_AsTupleAndClear` (GH-145680)
encukou
2026/03/12
[Python-checkins] [3.14] gh-140594: Fix an out of bounds read when feeding NUL byte to PyOS_StdioReadline() (GH-140910) (#145852)
vstinner
2026/03/12
[Python-checkins] [3.13] gh-140594: Fix an out of bounds read when feeding NUL byte to PyOS_StdioReadline() (GH-140910) (#145853)
vstinner
2026/03/12
[Python-checkins] gh-140594: Fix an out of bounds read when feeding NUL byte to PyOS_StdioReadline() (#140910)
vstinner
2026/03/12
[Python-checkins] [3.13] gh-145492: Fix defaultdict __repr__ infinite recursion (GH-145659) (GH-145746)
encukou
2026/03/12
[Python-checkins] [3.14] gh-145492: Fix defaultdict __repr__ infinite recursion (GH-145659) (GH-145747)
encukou
2026/03/12
[Python-checkins] gh-143715: Deprecate incomplete initialization of struct.Struct() (GH-145580)
serhiy-storchaka
2026/03/11
[Python-checkins] gh-145254: Add thread safety annotation in docs (#145255)
kumaraditya303
2026/03/11
[Python-checkins] [3.14] gh-145736: Fix Tkinter tests for Tk 8.7, 9.0 and 9.1 (GH-145738) (GH-145841)
serhiy-storchaka
2026/03/11
[Python-checkins] GH-145247: Use _PyTuple_FromPair in Parser and Python (#145842)
pablogsal
2026/03/11
[Python-checkins] [3.13] gh-139933: correctly suggest attributes for classes with a custom `__dir__` (GH-139950) (GH-145827) (GH-145833)
ambv
2026/03/11
[Python-checkins] gh-144540: Add _MAKE_HEAP_SAFE uop to eliminate unnecessary refcount operations in RETURN_VALUE and YIELD_VALUE (GH-144414)
markshannon
2026/03/11
[Python-checkins] gh-145736: Fix Tkinter tests for Tk 8.7, 9.0 and 9.1 (GH-145738)
serhiy-storchaka
2026/03/11
[Python-checkins] gh-141510: Raise TypeError in PyDict_SetItem() on frozendict (#145564)
vstinner
2026/03/11
[Python-checkins] [3.14] gh-139933: correctly suggest attributes for classes with a custom `__dir__` (GH-139950) (GH-145827)
ambv
2026/03/11
[Python-checkins] gh-142183: Cache one datachunk per tstate to prevent alloc/dealloc thrashing (#145789)
Yhg1s
2026/03/11
[Python-checkins] gh-139933: correctly suggest attributes for classes with a custom `__dir__` (GH-139950)
ambv
2026/03/11
[Python-checkins] [3.14] gh-142518: Improve mimalloc allocator docs (GH-145224) (#145823)
lysnikolaou
2026/03/11
[Python-checkins] gh-142518: Improve mimalloc allocator docs (#145224)
lysnikolaou
2026/03/11
[Python-checkins] Add GitHub team for maintaining fuzzers
sethmlarson
2026/03/11
[Python-checkins] gh-141707: Skip TarInfo DIRTYPE normalization during GNU long name handling
sethmlarson
2026/03/11
[Python-checkins] [3.13] gh-99875: Document rounding mode for old-style formatting (GH-126382) (#145812)
vstinner
2026/03/11
[Python-checkins] [3.14] gh-99875: Document rounding mode for old-style formatting (GH-126382) (#145811)
vstinner
2026/03/11
[Python-checkins] gh-99875: Document rounding mode for old-style formatting (#126382)
vstinner
2026/03/11
[Python-checkins] gh-145376: Fix refleak & pointer type bug in uncommon code paths in Parser/ (GH-145684)
encukou
2026/03/11
[Python-checkins] gh-145492: fix regression test for defaultdict factory repr (GH-145788)
encukou
2026/03/11
[Python-checkins] [3.14] gh-145591: Move slicing note to __getitem__ (GH-145606) (GH-145760)
encukou
2026/03/11
[Python-checkins] [3.14] Warn that overriding `__builtins__` for `eval` is not a security mechanism (GH-145773) (GH-145808)
encukou
2026/03/11
[Python-checkins] [3.13] Warn that overriding `__builtins__` for `eval` is not a security mechanism (GH-145773) (GH-145807)
encukou
2026/03/11
[Python-checkins] Warn that overriding `__builtins__` for `eval` is not a security mechanism (GH-145773)
encukou
2026/03/11
[Python-checkins] gh-145546: unittest.util: fix `sorted_list_difference` tail deduplication (GH-145547)
encukou
2026/03/11
[Python-checkins] gh-145587: fix busy loop in multiprocessing.connection.wait on Windows (GH-145597)
encukou
2026/03/11
[Python-checkins] [3.14] gh-145685: Avoid contention on TYPE_LOCK in super() lookups (gh-145775) (#145804)
colesbury
2026/03/11
[Python-checkins] gh-145633: Remove support for ancient ARM platforms with mixed-endian doubles (#145634)
vstinner
2026/03/11
[Python-checkins] gh-145685: Avoid contention on TYPE_LOCK in super() lookups (gh-145775)
colesbury
2026/03/11
[Python-checkins] [3.13] gh-101100: Fix sphinx reference warnings around I/O (GH-139592) (#145795)
hugovk
2026/03/11
[Python-checkins] [3.14] gh-101100: Fix sphinx reference warnings around I/O (GH-139592) (#145794)
hugovk
2026/03/11
[Python-checkins] gh-101100: Fix sphinx reference warnings around I/O (#139592)
hugovk
2026/03/11
[Python-checkins] gh-145713: make bytearray.resize thread-safe on free-threading (#145714)
kumaraditya303
2026/03/10
[Python-checkins] [3.13] gh-145607: Ensure BIG_DATA has two compressed blocks in test_bz2 (GH-145730) (#145734)
emmatyping
2026/03/10
[Python-checkins] [3.14] gh-145607: Ensure BIG_DATA has two compressed blocks in test_bz2 (GH-145730) (#145733)
emmatyping
2026/03/10
[Python-checkins] [3.14] gh-145219: Cache Emscripten build dependencies, add install-emscripten (GH-145664) (#145790)
freakboy3742
2026/03/10
[Python-checkins] gh-145219: Cache Emscripten build dependencies, add install-emscripten (#145664)
freakboy3742
2026/03/10
[Python-checkins] gh-143050: Remove redundant decref in _PyLong_Negate (gh-143051)
colesbury
2026/03/10
[Python-checkins] [3.14] gh-142763: Fix race in ZoneInfo cache eviction (gh-144978) (#145781)
colesbury
2026/03/10
[Python-checkins] [3.14] gh-145685: Update find_name_in_mro() to return a _PyStackRef (gh-145693) (#145769)
colesbury
2026/03/10
[Python-checkins] [3.13] gh-142763: Fix race in ZoneInfo cache eviction (gh-144978) (#145782)
colesbury
2026/03/10
[Python-checkins] gh-142763: Fix race in ZoneInfo cache eviction (gh-144978)
colesbury
2026/03/10
[Python-checkins] [3.14] gh-145010: Fix Python.h compilation with -masm=intel (GH-145011) (#145776)
colesbury
2026/03/10
[Python-checkins] [3.13] Fix integer overflow for formats "s" and "p" in the struct module (GH-145750) (GH-145777)
serhiy-storchaka
2026/03/10
[Python-checkins] [3.14] Fix integer overflow for formats "s" and "p" in the struct module (GH-145750) (GH-145772)
serhiy-storchaka
2026/03/10
[Python-checkins] [3.14] gh-144173: fix flaky test_complex.test_truediv() (GH-144355) (#145766)
vstinner
2026/03/10
[Python-checkins] [3.13] gh-144173: fix flaky test_complex.test_truediv() (GH-144355) (#145767)
vstinner
2026/03/10
[Python-checkins] Fix integer overflow for formats "s" and "p" in the struct module (GH-145750)
serhiy-storchaka
2026/03/10
[Python-checkins] [3.14] gh-145743: Fix inconsistency after calling Struct.__init__() with invalid format (GH-145744) (GH-145763)
serhiy-storchaka
2026/03/10
[Python-checkins] gh-145010: Fix Python.h compilation with -masm=intel (#145011)
Yhg1s
2026/03/10
[Python-checkins] [3.13] gh-145743: Fix inconsistency after calling Struct.__init__() with invalid format (GH-145744) (GH-145764)
serhiy-storchaka
2026/03/10
[Python-checkins] gh-145685: Update find_name_in_mro() to return a _PyStackRef (gh-145693)
colesbury
2026/03/10
[Python-checkins] gh-144173: fix flaky test_complex.test_truediv() (#144355)
vstinner
2026/03/10
[Python-checkins] gh-145044: avoid calling `Py_DECREF` in `unsafe_object_compare` on immortal objects (#145045)
kumaraditya303
2026/03/10
[Python-checkins] gh-145036: Fix data race for list capacity in free-threading (#145365)
kumaraditya303
2026/03/10
[Python-checkins] gh-145743: Fix inconsistency after calling Struct.__init__() with invalid format (GH-145744)
serhiy-storchaka
2026/03/10
[Python-checkins] gh-125053: Document that ob_mutex must only be used via critical section API (#144599)
vstinner
2026/03/10
[Python-checkins] gh-85277: Fix building without `stropts.h` or empty `stropts.h` (#143521)
vstinner
2026/03/10
[Python-checkins] gh-145591: Move slicing note to __getitem__ (GH-145606)
encukou
2026/03/10
[Python-checkins] [3.14] gh-145376: Fix various reference leaks (GH-145377) (GH-145712)
encukou
2026/03/10
[Python-checkins] gh-145697: Add `.sql` and `.sqlite3` recognition in `mimetypes` (GH-145698)
encukou
2026/03/10
[Python-checkins] [3.14] Docs: Improve the C API documentation involving threads (GH-145520) (GH-145757)
ZeroIntensity
2026/03/10
[Python-checkins] [3.13] gh-145548: Don't use VMADDR_CID_LOCAL from `socket` (GH-145735)
encukou
2026/03/10
[Python-checkins] Docs: Improve the C API documentation involving threads (GH-145520)
ZeroIntensity
2026/03/10
[Python-checkins] [3.13] gh-106318: Add examples for str.isspace() docs (GH-145399) (#145753)
hugovk
2026/03/10
[Python-checkins] [3.14] gh-106318: Add examples for str.isspace() docs (GH-145399) (#145752)
hugovk
2026/03/10
[Python-checkins] gh-106318: Add examples for str.isspace() docs (#145399)
hugovk
2026/03/10
[Python-checkins] [3.14] Docs: Update programming FAQ (GH-144573) (#145695)
hugovk
2026/03/10
[Python-checkins] [3.13] Docs: Update programming FAQ (GH-144573) (#145696)
hugovk
2026/03/10
[Python-checkins] [3.13] gh-145301: Fix double-free in hashlib initialization (GH-145321) (GH-145532)
encukou
2026/03/10
[Python-checkins] gh-145035: Allows removing the _pyrepl module to completely disable the modern REPL (GH-145159)
ambv
2026/03/10
[Python-checkins] [3.14] gh-145685: Stop the world when updating MRO of existing types (gh-145707) (#145715)
colesbury
2026/03/10
[Python-checkins] gh-145492: Fix defaultdict __repr__ infinite recursion (GH-145659)
encukou
2026/03/10
[Python-checkins] [3.14] gh-142651: use `NonCallableMock._lock` for thread safety of `call_count` (GH-142922) (#145739)
kumaraditya303
2026/03/10
[Python-checkins] [3.13] gh-142651: use `NonCallableMock._lock` for thread safety of `call_count` (GH-142922) (#145740)
kumaraditya303
2026/03/10
[Python-checkins] gh-142651: use `NonCallableMock._lock` for thread safety of `call_count` (#142922)
kumaraditya303
2026/03/10
[Python-checkins] gh-142927: Detect system theme in flame graph like in heatmap (#144885)
hugovk
2026/03/10
[Python-checkins] [3.13] gh-140715: Improve class reference links on datetime.rst (GH-123980) (#145389)
hugovk
2026/03/10
[Python-checkins] [3.14] gh-140715: Improve class reference links on datetime.rst (GH-123980) (#145388)
hugovk
2026/03/10
[Python-checkins] [3.14] gh-140681: Freeze pre-commit hooks and update zizmor links (GH-140682) (#145536)
hugovk
2026/03/10
[Python-checkins] gh-133879: Copyedit "What's new in Python 3.15" (#145737)
hugovk
2026/03/10
[Python-checkins] GH-145247: Implement _PyTuple_FromPair() (#145325)
vstinner
2026/03/10
[Python-checkins] gh-145376: Fix refleaks and double decref for code in Python/ (#145666)
vstinner
2026/03/10
[Python-checkins] [3.13] Document that PyType_GetModule returns a borrowed ref (GH-145612) (GH-145732)
encukou
2026/03/10
[Python-checkins] gh-145607: Ensure BIG_DATA has two compressed blocks in test_bz2 (#145730)
hugovk
2026/03/10
[Python-checkins] [3.14] Document that PyType_GetModule returns a borrowed ref (GH-145612) (GH-145682)
encukou
2026/03/10
[Python-checkins] gh-103997: Remove incorrect statements about `-c` dedenting (gh-138624)
encukou
2026/03/10
[Python-checkins] gh-145731: Fix negative timestamp during DST on Windows (GH-145728)
encukou
2026/03/09
[Python-checkins] [3.14] gh-145541: Fix `InvalidStateError` in `BaseSubprocessTransport._call_connection_lost()` (GH-145554) (#145676)
kumaraditya303
2026/03/09
[Python-checkins] [3.13] gh-145541: Fix `InvalidStateError` in `BaseSubprocessTransport._call_connection_lost()` (GH-145554) (#145677)
kumaraditya303
2026/03/09
[Python-checkins] gh-144681: Fix JIT trace builder assertion failure when conditional branch jump target coincides with fallthrough target (GH-144742)
Fidget-Spinner
2026/03/09
[Python-checkins] Vary compiler flags in `fuzz_pycompile` (#145236)
alex
2026/03/09
[Python-checkins] gh-145685: Stop the world when updating MRO of existing types (gh-145707)
colesbury
2026/03/09
[Python-checkins] [3.14] Remove the `
[email protected]
` email in 'Installing Python Modules' (GH-145613) (#145708)
hugovk
2026/03/09
[Python-checkins] [3.13] gh-145701: Fix `__classdict__` & `__conditional_annotations__` in class-scope inlined comprehensions (GH-145702) (#145711)
gpshead
2026/03/09
[Python-checkins] [3.14] gh-145701: Fix `__classdict__` & `__conditional_annotations__` in class-scope inlined comprehensions (GH-145702) (#145710)
JelleZijlstra
2026/03/09
[Python-checkins] gh-145701: Fix `__classdict__` & `__conditional_annotations__` in class-scope inlined comprehensions (GH-145702)
gpshead
2026/03/09
[Python-checkins] [3.13] Remove the `
[email protected]
` email in 'Installing Python Modules' (GH-145613) (#145709)
hugovk
2026/03/09
[Python-checkins] Remove the `
[email protected]
` email in 'Installing Python Modules' (#145613)
hugovk
2026/03/09
[Python-checkins] GH-145273: don't skip missing platstdlib warning if stdlib_zip is found (#145544)
FFY00
2026/03/09
[Python-checkins] Docs: Update programming FAQ (#144573)
hugovk
2026/03/09
[Python-checkins] gh-145278: Revert "freeze encodings (partially) and linecache (#145279)" (#145689)
hugovk
2026/03/09
[Python-checkins] [3.14] gh-145615: Fix mimalloc page leak in the free-threaded build (gh-145626) (#145691)
colesbury
2026/03/09
[Python-checkins] gh-143055: Fix crash in AST unparser when unparsing dict comprehension unpacking (#145556)
JelleZijlstra
2026/03/09
[Python-checkins] gh-145615: Fix mimalloc page leak in the free-threaded build (gh-145626)
colesbury
2026/03/09
[Python-checkins] [3.13] gh-141617: clarify `concurrent.futures.ThreadPoolExecutor` deadlock example (GH-141620) (#145687)
picnixz
2026/03/09
[Python-checkins] [3.13] gh-145623: Fix crashes on uninitialized struct.Struct objects (gh-145624) (GH-145631)
encukou
2026/03/09
[Python-checkins] [3.14] gh-145623: Fix crashes on uninitialized struct.Struct objects (gh-145624) (GH-145630)
encukou
2026/03/09
[Python-checkins] [3.14] gh-141617: clarify `concurrent.futures.ThreadPoolExecutor` deadlock example (GH-141620) (#145686)
picnixz
2026/03/09
[Python-checkins] gh-141617: clarify `concurrent.futures.ThreadPoolExecutor` deadlock example (#141620)
picnixz
2026/03/09
[Python-checkins] gh-139588: Docs: fix PDF build (#145480)
hugovk
2026/03/09
[Python-checkins] GH-144688: Fix refleaks in JIT when optimization fails (GH-145420)
markshannon
2026/03/09
[Python-checkins] [3.14] gh-78773: Improve ctypes dynamic library loading docs (GH-145313) (GH-145674)
encukou
2026/03/09
[Python-checkins] gh-141510: Optimize frozendict(frozendict) (#145592)
vstinner
2026/03/09
[Python-checkins] gh-145541: Fix `InvalidStateError` in `BaseSubprocessTransport._call_connection_lost()` (#145554)
kumaraditya303
2026/03/09
[Python-checkins] gh-78773: Improve ctypes dynamic library loading docs (GH-145313)
encukou
2026/03/09
[Python-checkins] gh-145376: Fix _cursesmodule.c build on FreeBSD/macOS (#145669)
vstinner
2026/03/09
[Python-checkins] Document that PyType_GetModule returns a borrowed ref (GH-145612)
encukou
2026/03/09
[Python-checkins] GH-145278: freeze encodings (partially) and linecache (#145279)
FFY00
2026/03/09
[Python-checkins] gh-145376: Fix various reference leaks in Objects/ and Modules/ (#145385)
vstinner
2026/03/09
[Python-checkins] gh-145376: Fix various refleaks in Objects/ (#145609)
vstinner
2026/03/09
[Python-checkins] gh-145376: Fix reference leaks in _lprof.c (#145539)
vstinner
2026/03/09
[Python-checkins] Fix intermittent `test_ci_fuzz_stdlib` failures (GH-145641)
encukou
2026/03/08
[Python-checkins] [3.14] gh-145219: Add Emscripten cross-build and clean configurability (GH-145581) (#145654)
freakboy3742
2026/03/08
[Python-checkins] gh-145219: Add Emscripten cross-build and clean configurability (#145581)
freakboy3742
2026/03/08
[Python-checkins] [3.14] gh-145642: Docs: Avoid warning for invalid escape sequence in tutorial (GH-145643) (#145647)
picnixz
2026/03/08
[Python-checkins] [3.13] gh-145642: Docs: Avoid warning for invalid escape sequence in tutorial (GH-145643) (#145646)
picnixz
2026/03/08
[Python-checkins] gh-145642: Docs: Avoid warning for invalid escape sequence in tutorial (#145643)
nedbat
2026/03/08
[Python-checkins] [3.14] gh-145177: Support multiple Emscripten versions for Emscripten buildbot (GH-145180) (#145582)
freakboy3742
2026/03/08
[Python-checkins] [3.14] gh-145376: Fix refleak in `queuemodule.c` out-of-memory path (GH-145543) (#145622)
kumaraditya303
2026/03/08
[Python-checkins] [3.13] gh-145376: Fix refleak in `queuemodule.c` out-of-memory path (GH-145543) (#145621)
kumaraditya303
2026/03/07
[Python-checkins] [3.13] Remove typo in ``functools.lru_cache`` docs (GH-140278) (#145627)
hugovk
2026/03/07
[Python-checkins] [3.14] Remove typo in ``functools.lru_cache`` docs (GH-140278) (#145628)
hugovk
2026/03/07
[Python-checkins] Fix bug notifier for issues with no body text (#145603)
hugovk
2026/03/07
[Python-checkins] gh-145623: Fix crashes on uninitialized struct.Struct objects (gh-145624)
corona10
2026/03/07
[Python-checkins] gh-145376: Fix refleak in `queuemodule.c` out-of-memory path (#145543)
kumaraditya303
2026/03/07
[Python-checkins] gh-116738: Make mmap.set_name thread-safe (#145555)
corona10
2026/03/06
[Python-checkins] [3.13] gh-145376: Fix crashes in md5module.c (GH-145422) (#145611)
vstinner
2026/03/06
[Python-checkins] gh-144175: Add PyArg_ParseArray() function (#144283)
vstinner
2026/03/06
[Python-checkins] [3.14] gh-145376: Fix crashes in `md5module.c` and `hmacmodule.c` (GH-145422) (#145610)
vstinner
2026/03/06
[Python-checkins] [3.13] gh-145548: Use VMADDR_CID_LOCAL in VSOCK socket tests (GH-145589) (#145594)
vstinner
2026/03/06
[Python-checkins] [3.14] gh-145548: Use VMADDR_CID_LOCAL in VSOCK socket tests (GH-145589) (#145593)
vstinner
2026/03/06
[Python-checkins] gh-145376: Fix crashes in `md5module.c` and `hmacmodule.c` (#145422)
picnixz
2026/03/06
[Python-checkins] [3.14] gh-145566: Skip stop-the-world when reassigning `__class__` on newly created objects (gh-145567) (#145605)
colesbury
2026/03/06
[Python-checkins] gh-145566: Skip stop-the-world when reassigning `__class__` on newly created objects (gh-145567)
colesbury
2026/03/06
[Python-checkins] [3.14] gh-144513: Skip critical section locking during stop-the-world (gh-144524) (#145570)
colesbury
2026/03/06
[Python-checkins] gh-69223: Document that add_argument() returns an Action object (#145538)
savannahostrowski
2026/03/06
[Python-checkins] gh-145548: Use VMADDR_CID_LOCAL in VSOCK socket tests (#145589)
vstinner
2026/03/06
[Python-checkins] [3.14] gh-144370: Disallow usage of control characters in status in wsgiref.handlers for security (GH-144371) (#145586)
vstinner
2026/03/06
[Python-checkins] [3.13] gh-144370: Disallow usage of control characters in status in wsgiref.handlers for security (GH-144371) (#145585)
vstinner
2026/03/06
[Python-checkins] gh-144370: Disallow usage of control characters in status in wsgiref.handlers for security (#144371)
vstinner
2026/03/06
[Python-checkins] [3.13] Docs: `import datetime as dt` in examples (GH-145315) (#145584)
hugovk
2026/03/06
[Python-checkins] [3.14] Docs: `import datetime as dt` in examples (GH-145315) (#145583)
hugovk
2026/03/06
[Python-checkins] Docs: `import datetime as dt` in examples (#145315)
hugovk
2026/03/06
[Python-checkins] [3.14] gh-122941: Fix test_launcher sporadic failures via py.ini isolation (GH-145090)
zooba
2026/03/06
[Python-checkins] [3.13] gh-122941: Fix test_launcher sporadic failures via py.ini isolation (GH-145090)
zooba
2026/03/06
[Python-checkins] gh-141510: Use frozendict in the stdlib (#144909)
vstinner
2026/03/06
[Python-checkins] gh-141510: Change marshal version to 6 (#145551)
vstinner
2026/03/06
[Python-checkins] [3.13] doc: Clarify logger creation example in logging HOWTO (GH-145540) (GH-145561)
vsajip
2026/03/05
[Python-checkins] [3.13] Docs: use a Sphinx extension to eliminate excessive links (GH-145130) (#145574)
hugovk
2026/03/05
[Python-checkins] [3.14] Docs: use a Sphinx extension to eliminate excessive links (GH-145130) (#145575)
hugovk
2026/03/05
[Python-checkins] gh-145177: Support multiple Emscripten versions for Emscripten buildbot (#145180)
freakboy3742
2026/03/05
[Python-checkins] [3.11] Add `mkdir`s to fix 3.11 docs build (#145571)
hugovk
2026/03/05
[Python-checkins] [3.11] gh-145455: Show output of blurb & sphinx-build version commands (GH-145457) (#145491)
hugovk
2026/03/05
[Python-checkins] [3.12] gh-145455: Show output of blurb & sphinx-build version commands (GH-145457) (#145490)
hugovk
2026/03/05
[Python-checkins] [3.10] gh-145455: Show output of blurb & sphinx-build version commands (GH-145457) (#145489)
hugovk
2026/03/05
[Python-checkins] [3.10] gh-145455: Constrain setuptools to a version with pkg_resources (#145456)
hugovk
2026/03/05
[Python-checkins] [3.14] gh-145557: Check ctypes is available in test_external_inspection (GH-145558) (#145565)
vstinner
2026/03/05
[Python-checkins] gh-145557: Check ctypes is available in test_external_inspection (#145558)
vstinner
2026/03/05
[Python-checkins] [3.14] doc: Clarify logger creation example in logging HOWTO (GH-145540) (GH-145562)
vsajip
2026/03/05
[Python-checkins] doc: Clarify logger creation example in logging HOWTO (GH-145540)
vsajip
2026/03/05
[Python-checkins] [3.13] gh-145417: Do not preserve SELinux context when copying venv scripts (GH-145454) (#145550)
vstinner
2026/03/05
[Python-checkins] gh-141510: Complete What's New in Python 3.15 for frozendict (#145537)
vstinner
2026/03/05
[Python-checkins] [3.14] gh-145417: Do not preserve SELinux context when copying venv scripts (GH-145454) (#145549)
vstinner
2026/03/05
[Python-checkins] [3.13] gh-143304: Fix ctypes.CDLL to honor handle parameter on POSIX systems (GH-143318) (GH-145173)
encukou
2026/03/05
[Python-checkins] [3.14] gh-143304: Fix ctypes.CDLL to honor handle parameter on POSIX systems (GH-143318) (GH-145172)
encukou
2026/03/05
[Python-checkins] gh-141510: No longer accept frozendict in PyDict_Copy() (#145542)
vstinner
2026/03/05
[Python-checkins] gh-145417: Do not preserve SELinux context when copying venv scripts (#145454)
vstinner
2026/03/05
[Python-checkins] [3.14] gh-144981: Make PyUnstable_Code_SetExtra/GetExtra thread-safe (GH-144980) (#145052)
colesbury
2026/03/05
[Python-checkins] gh-141510: Fix frozendict.items() ^ frozendict.items() (#145535)
vstinner
2026/03/05
[Python-checkins] gh-140681: Freeze pre-commit hooks and update zizmor links (#140682)
hugovk
2026/03/05
[Python-checkins] gh-145056: Accept frozendict in xml.etree (#145508)
vstinner
2026/03/05
[Python-checkins] gh-145055: Accept frozendict for globals in exec() and eval() (#145072)
vstinner
2026/03/05
[Python-checkins] gh-141510: Use frozendict in the _opcode_metadata (#144910)
vstinner
2026/03/05
[Python-checkins] gh-82626: Schedule removal of bool used as file descriptor (#145469)
vstinner
2026/03/05
[Python-checkins] gh-141510: Don't accept frozendict in PyDict_Watch() (#145529)
vstinner
2026/03/05
[Python-checkins] gh-145335: Skip Emscripten for os.execve() test (#145528)
vstinner
2026/03/05
[Python-checkins] gh-145376: Fix refleak and null pointer deref in unusual error path of datetime module (GH-145476)
encukou
2026/03/04
[Python-checkins] [3.14] gh-145301: Fix double-free in hashlib and hmac module initialization (GH-145321) (#145523)
gpshead
2026/03/04
[Python-checkins] gh-145301: Fix double-free in hashlib and hmac module initialization (GH-145321)
gpshead
Earlier messages