summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Docs: fix broken links (#116651)Mariusz Felisiak2024-03-135-5/+5
* Minor clarity improvement for the iter_index() recipe. Also add value subsequ...Raymond Hettinger2024-03-131-4/+21
* GH-116554: Relax list.sort()'s notion of "descending" runs (#116578)Tim Peters2024-03-134-66/+156
* gh-116682: stdout may be empty in test_cancel_futures_wait_false (#116683)Sam Gross2024-03-131-1/+3
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2024-03-1211-162/+239
|\
| * GH-116098: Remove dead frame object creation code (GH-116687)Tian Gao2024-03-122-83/+9
| * Add `typing.NamedTuple` in glossary section for named tuples (#108327)Tushar Sadhwani2024-03-121-4/+5
| * gh-116621: Set manual critical section for list.extend (gh-116657)Donghee Na2024-03-122-64/+97
| * Beef-up tests for the itertool docs. (gh-116679)Raymond Hettinger2024-03-121-9/+103
| * gh-89547: typing.rst: Add note about change in behavior with ClassVar/Final (...Jelle Zijlstra2024-03-121-0/+8
| * gh-116307: Proper fix for 'mod' leaking across importlib tests (#116680)Jason R. Coombs2024-03-123-1/+16
| * CI: Process stale issues twice per day (#116636)Hugo van Kemenade2024-03-121-1/+1
* | Post 3.13.0a5Thomas Wouters2024-03-121-1/+1
* | Python 3.13.0a5v3.13.0a5Thomas Wouters2024-03-12117-293/+1231
|/
* gh-116656: Fix test_capi test_py_config_isoloated_per_interpreter() (#116658)Victor Stinner2024-03-121-0/+1
* gh-116604: Check for `gcstate->enabled` in _Py_RunGC in free-threaded build (...Sam Gross2024-03-121-0/+4
* gh-116127: PEP-705: Add `ReadOnly` support for `TypedDict` (#116350)Nikita Sobolev2024-03-125-11/+182
* Fix code comment regarding DK_ENTRIES (GH-113960)Matthias Diener2024-03-121-1/+1
* gh-116616: Use relaxed atomic ops to access socket module defaulttimeout (#11...Erlend E. Aasland2024-03-121-5/+6
* gh-116604: Correctly honor the gc status when calling _Py_RunGC (#116628)Pablo Galindo Salgado2024-03-123-0/+32
* gh-110819: Fix ‘kind’ may be used uninitialized warning in `longobject` (...Nikita Sobolev2024-03-121-28/+35
* gh-116541: Handle errors correctly in `_pystatvfs_fromstructstatvfs` (#116542)Nikita Sobolev2024-03-121-32/+36
* gh-89547: Support for nesting special forms like Final (#116096)Mehdi Drissi2024-03-124-14/+32
* gh-116145: Update macOS installer to Tcl/Tk 8.6.14 (GH-116151)Christopher Chavez2024-03-123-86/+5
* gh-85283: Convert grp extension to the limited C API (#116611)Victor Stinner2024-03-128-88/+20
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-128-152/+20
* gh-108494: Fix Argument Clinic LIMITED_CAPI_REGEX (#116610)Victor Stinner2024-03-1113-36/+26
* gh-116600: [Enum] fix global Flag repr (GH-116615)Ethan Furman2024-03-113-1/+4
* gh-116563: Update tutorial error example (#116569)Terry Jan Reedy2024-03-111-4/+4
* gh-90095: Make .pdbrc work properly and add some reasonable tests (#110496)Tian Gao2024-03-113-96/+101
* gh-116040: [Enum] fix test_empty_names test (GH-116508)Ethan Furman2024-03-112-14/+8
* gh-71052: Use `raise_signal` in `ThreadSignals.test_signals` (#116423)Malcolm Smith2024-03-111-18/+7
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-118-20/+152
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-1124-78/+94
* gh-116515: Clear thread-local state before tstate_delete_common() (#116517)Sam Gross2024-03-111-1/+2
* GH-115976: Add WASI to CI (GH-116516)Brett Cannon2024-03-112-0/+81
* gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606)Victor Stinner2024-03-114-31/+40
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-1112-1/+163
* gh-116417: Build _testinternalcapi with limited C API version 3.5 (#116598)Victor Stinner2024-03-113-2/+15
* GH-116596: Better determination of escaping uops. (GH-116597)Mark Shannon2024-03-115-30/+47
* gh-112536: Define MI_TSAN to 1 for --with-mimalloc and --with-thread-sanitize...Donghee Na2024-03-111-0/+4
* gh-116590: Fix unused `current_thread_holds_gil` function warning (#116591)Nikita Sobolev2024-03-111-0/+2
* gh-116545: Fix error handling in `mkpwent` in `pwdmodule` (#116548)Nikita Sobolev2024-03-111-31/+30
* gh-116417: Move 4 limited C API test files to _testlimitedcapi (#116571)Victor Stinner2024-03-1117-80/+101
* gh-88352: Make TimedRotatingFileHandler tests more stable (GH-116409)Serhiy Storchaka2024-03-111-38/+17
* GH-116468: Use constants instead of `oparg` in stack effects when `oparg` is ...Mark Shannon2024-03-115-108/+98
* gh-116417: Argument Clinic: test generated Limited C API code for float args ...Erlend E. Aasland2024-03-111-2/+56
* gh-116576: Fix `Tools/scripts/sortperf.py` sorting the same list (#116577)Nikita Sobolev2024-03-111-1/+2
* gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...Malcolm Smith2024-03-102-5/+5
* gh-116417: Fix make check-c-globals for _testlimitedcapi (#116570)Victor Stinner2024-03-103-5/+1