summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-128013: Convert unicodeobject.c macros to functions (#128061)Victor Stinner2024-12-181-45/+78
* gh-128033: change `PyMutex_LockFast` to take `PyMutex` as argument (#128054)Kumar Aditya2024-12-183-5/+6
* gh-121621: clear running loop early in asyncio (#128004)Kumar Aditya2024-12-181-0/+5
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-189-26/+40
* gh-126639: Add ResourceWarning to NamedTemporaryFile (#126677)Thomas Grainger2024-12-183-6/+30
* gh-126742: add NEWS entry for fix of localized error messages (GH-128025)Bénédikt Tran2024-12-181-0/+3
* gh-126742: Avoid checking for library filename in test_ctypes (#128034)Bénédikt Tran2024-12-181-12/+5
* gh-127174: add docs for asyncio.get_event_loop replacements (#127640)Thomas Grainger2024-12-181-0/+90
* gh-127897: fix HACL* build on macOS/Catalina (GH-127932)aeiouaeiouaeiouaeiouaeiouaeiou2024-12-183-5/+27
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-1846-67/+81
* gh-127060: Disable traceback colors in IDLE (#128028)Victor Stinner2024-12-182-1/+5
* gh-127146: Emscripten Include compiler version in _PYTHON_HOST_PLATFORM (#127...Hood Chatham2024-12-172-0/+6
* Merge branch 'main' of https://github.com/python/cpythonHugo van Kemenade2024-12-1712-68/+175
|\
| * gh-126742: Add _PyErr_SetLocaleString, use it for gdbm & dlerror messages (GH...Bénédikt Tran2024-12-1712-68/+175
* | Post 3.14.0a3Hugo van Kemenade2024-12-171-1/+1
* | Python 3.14.0a3v3.14.0a3Hugo van Kemenade2024-12-17120-279/+1200
|/
* gh-127085: Add a test skip if multiprocessing isn't available (#128019)Russell Keith-Magee2024-12-171-1/+4
* gh-127146: Emscripten clean up test suite (#127984)Hood Chatham2024-12-1712-82/+19
* Free arena on _PyCompile_AstOptimize failure in Py_CompileStringObject (GH-12...Berker Peksag2024-12-161-0/+1
* gh-126907: make `atexit` thread safe in free-threading (#127935)Peter Bierma2024-12-164-88/+126
* gh-127085: fix some data races in memoryview in free-threading (#127412)Edward Xu2024-12-163-8/+52
* Revert "gh-127586: properly restore blocked signals in resource_tracker.py (G...Hugo van Kemenade2024-12-163-22/+3
* Fix typo in itertools docs (gh-127995)Gugubo2024-12-161-1/+1
* gh-127864: Fix compiler warning (-Wstringop-truncation) (GH-127878)Tomas R.2024-12-161-2/+3
* gh-127896: Add missing documentation of `PySequence_In` (GH-127979)Yuki Kobayashi2024-12-163-0/+15
* gh-111178: fix UBSan failures in `_elementtree.c` (#127982)Bénédikt Tran2024-12-161-53/+80
* gh-125588: Allow to regenerate the parser with Python < 3.12 (#127969)Pablo Galindo Salgado2024-12-152-3/+9
* GH-126985: Don't override venv detection with PYTHONHOME (#127968)Filipe Laíns 🇵🇸2024-12-152-3/+38
* gh-127586: properly restore blocked signals in resource_tracker.py (GH-127587)Stephen Hansen2024-12-153-3/+22
* gh-119786: Fix miscellaneous typos in `InternalDocs/interpreter_definition.md...Stan Ulbrych2024-12-151-3/+3
* getpath: Add comments highlighing details of the pyvenv.cfg detection (#127966)Filipe Laíns 🇵🇸2024-12-151-0/+11
* gh-127599: Fix _Py_RefcntAdd missing calls to _Py_INCREF_STAT_INC/_Py_INCREF_...Ed Nutting2024-12-153-0/+13
* Clarify ast docs to use a less confusing example for `ast.ParamSpec` (#127955)Steve C2024-12-151-2/+2
* gh-127353: Allow to force color output on Windows V2 (#127926)Andrey Efremov2024-12-143-38/+51
* gh-127852: add remark about ',' separator (#127854)Sergey B Kirpichev2024-12-141-1/+3
* Fix typo in docstring: quadruple double quotes (#127913)Totosuki2024-12-141-1/+1
* gh-127747: Resolve BytesWarning in test.support.strace_helper (#127849)Cody Maloney2024-12-141-4/+5
* gh-115999: Specialize loading attributes from modules in free-threaded builds...mpage2024-12-1315-179/+437
* Minor readability improvements for the itertools recipes (gh-127928)Raymond Hettinger2024-12-131-39/+35
* gh-126024: unicodeobject: optimize find_first_nonascii (GH-127790)Inada Naoki2024-12-131-9/+14
* gh-127691: add type checks when using `PyUnicodeError` objects (GH-127694)Bénédikt Tran2024-12-133-68/+157
* gh-102471, PEP 757: Add PyLong import and export API (#121339)Victor Stinner2024-12-139-0/+576
* gh-127906: Test the limited C API in test_cppext (#127916)Victor Stinner2024-12-134-3/+26
* gh-127870: Detect recursive calls in ctypes _as_parameter_ handling (#127872)Victor Stinner2024-12-133-3/+33
* GH-126833: Dumps graphviz representation of executor graph. (GH-126880)Mark Shannon2024-12-139-2/+230
* gh-126868: Add freelist for compact int objects (GH-126865)Pieter Eendebak2024-12-138-55/+102
* GH-125174: Don't use `UINT32_MAX` in header file (GH-127863)Mark Shannon2024-12-131-1/+1
* link to the correct output method in documentation (#127857)Viktor Kálmán2024-12-131-1/+1
* Document PyObject_SelfIter (#127861)Miro Hrončok2024-12-132-0/+9
* gh-127845: Minor improvements to iOS test runner script (#127846)Russell Keith-Magee2024-12-123-20/+53