summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-101100: Fix Sphinx warnings in `whatsnew/3.2.rst` (#115580)Hugo van Kemenade2024-02-173-43/+44
* gh-101100: Fix Sphinx warnings in `whatsnew/3.1.rst` (#115575)Hugo van Kemenade2024-02-172-10/+13
* gh-101384: Add socket timeout to ThreadedVSOCKSocketStreamTest and skip it on...Peter Jiping Xie2024-02-171-0/+3
* gh-101699: Explain using Match.expand with \g<0> (GH-101701)Stevoisiak2024-02-171-1/+2
* gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)Jamie Phan2024-02-178-16/+50
* gh-111968: Split _Py_async_gen_asend_freelist out of _Py_async_gen_fr… (gh-...Donghee Na2024-02-172-25/+39
* docs: Add glossary term references to shutil docs (#115559)Brian Schubert2024-02-161-4/+4
* gh-85294: Handle missing arguments to @singledispatchmethod gracefully (GH-21...Ammar Askar2024-02-163-2/+23
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-1618-2/+577
* gh-115556: Remove quotes from command-line arguments in test.bat and rt.bat (...Łukasz Langa2024-02-163-21/+29
* gh-112720: make it easier to subclass and modify dis.ArgResolver's jump arg r...Irit Katriel2024-02-163-11/+37
* gh-114271: Make `thread._rlock` thread-safe in free-threaded builds (#115102)mpage2024-02-165-10/+68
* gh-115480: Type / constant propagation for float binary uops (GH-115550)Peter Lazorchak2024-02-163-38/+184
* gh-115362: Add documentation to pystats output (#115365)Michael Droettboom2024-02-161-77/+224
* gh-113743: Give _PyTypes_AfterFork a prototype. (gh-115563)Benjamin Peterson2024-02-161-1/+1
* gh-112529: Make the GC scheduling thread-safe (#114880)Sam Gross2024-02-167-16/+71
* gh-115480: Minor fixups in int constant propagation (GH-115507)Ken Jin2024-02-163-132/+59
* gh-102013: Move PyUnstable_GC_VisitObjects() to Include/cpython/objimpl.h (#1...Victor Stinner2024-02-162-19/+17
* Add `Python/tier2_redundancy_eliminator_cases.c.h` to `.gitattributes` as gen...Nikita Sobolev2024-02-161-1/+1
* gh-69990: Make Profile.print_stats support sorting by multiple values (GH-104...Furkan Onder2024-02-165-4/+20
* gh-113317: Argument Clinic: move C/Py identifier helpers into libclinic (#115...Erlend E. Aasland2024-02-163-29/+45
* gh-115503: Fix `run_presite` error handling (#115504)Nikita Sobolev2024-02-161-1/+0
* gh-111968: Split _Py_dictkeys_freelist out of _Py_dict_freelist (gh-115505)Donghee Na2024-02-167-59/+77
* gh-113743: Use per-interpreter locks for types (#115541)Dino Viehland2024-02-163-4/+5
* gh-114572: Fix locking in cert_store_stats and get_ca_certs (#114573)David Benjamin2024-02-162-5/+64
* gh-113317: Argument Clinic: move linear_format into libclinic (#115518)Erlend E. Aasland2024-02-154-56/+76
* gh-115498: Fix `SET_COUNT` error handling in `_xxinterpchannelsmodule` (#115499)Nikita Sobolev2024-02-151-1/+1
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2024-02-1538-139/+1321
|\
| * gh-113743: Make the MRO cache thread-safe in free-threaded builds (#113930)Dino Viehland2024-02-1511-80/+500
| * gh-113317: Argument Clinic: inline required_type_for_self_for_parser() in sel...Erlend E. Aasland2024-02-151-9/+4
| * gh-100734: What's New in 3.x: Add missing detail from 3.x branch (#114689)Hugo van Kemenade2024-02-158-0/+327
| * gh-112433: Add optional _align_ attribute to ctypes.Structure (GH-113790)monkeyman1922024-02-158-1/+328
| * gh-115420: Fix translation of exception hander targets by _testinternalcapi.o...Irit Katriel2024-02-153-1/+19
| * gh-115376: fix segfault in _testinternalcapi.compiler_codegen on bad input (#...Irit Katriel2024-02-153-15/+35
| * gh-115124: Use _PyObject_ASSERT() in gc.c (#115125)Victor Stinner2024-02-151-15/+22
| * gh-115347: avoid emitting redundant NOP for the docstring with -OO (#115494)Irit Katriel2024-02-153-18/+48
| * gh-115432: Add critical section variant that handles a NULL object (#115433)Sam Gross2024-02-152-0/+38
* | Post 3.13.0a4Thomas Wouters2024-02-151-1/+1
* | Python 3.13.0a4v3.13.0a4Thomas Wouters2024-02-15141-349/+1471
|/
* gh-115490: Work around test.support.interpreters.channels not handling unload...T. Wouters2024-02-151-2/+7
* gh-113317: Argument Clinic: remove global clinic instance (#115517)Erlend E. Aasland2024-02-151-7/+3
* gh-113317: Argument Clinic: don't use global state in warn() and fail() (#115...Erlend E. Aasland2024-02-152-16/+23
* gh-113317: Argument Clinic: don't use fail() in CLI (#115513)Erlend E. Aasland2024-02-151-2/+2
* bpo-38364: unwrap partialmethods just like we unwrap partials (#16600)Martijn Pieters2024-02-155-4/+57
* gh-114626: add PyCFunctionFast and PyCFunctionFastWithKeywords (GH-114627)David Hewitt2024-02-1510-41/+57
* gh-114258: Refactor Argument Clinic function name parser (#114930)Erlend E. Aasland2024-02-151-106/+123
* gh-112050: Make collections.deque thread-safe in free-threaded builds (#113830)mpage2024-02-154-61/+338
* docs: use consistent .append() in dis.rst (#115434)Ned Batchelder2024-02-151-4/+4
* gh-115480: Type and constant propagation for int BINARY_OPs (GH-115478)Ken Jin2024-02-153-16/+126
* Trigger JIT CI with optimizer files (#115483)Ken Jin2024-02-151-0/+4