summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...Radislav Chugunov2023-10-231-0/+1
* GH-109369: Add machinery for deoptimizing tier2 executors, both individually ...Mark Shannon2023-10-232-0/+27
* gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)Victor Stinner2023-10-202-14/+11
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-202-21/+19
* gh-76785: Clean Up the Channels Module (gh-110568)Eric Snow2023-10-171-1/+1
* gh-84570: Add Timeouts to SendChannel.send() and RecvChannel.recv() (gh-110567)Eric Snow2023-10-171-0/+6
* gh-84570: Send-Wait Fixes for _xxinterpchannels (gh-111006)Eric Snow2023-10-171-0/+15
* gh-109693: Remove pycore_atomic.h (gh-110992)Donghee Na2023-10-173-557/+4
* gh-85283: Add PySys_Audit() to the limited C API (#108571)Victor Stinner2023-10-172-14/+20
* gh-85283: Build winsound extension with limited C API (#110978)Victor Stinner2023-10-174-18/+0
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-173-79/+92
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED new in 3.13. (#110969)Victor Stinner2023-10-171-2/+4
* gh-85283: Add PyMem_RawMalloc() to the limited C API (#108570)Victor Stinner2023-10-172-6/+11
* gh-109693: Update _gil_runtime_state.locked to use pyatomic.h (gh-110836)Donghee Na2023-10-165-2/+58
* gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)Lysandros Nikolaou2023-10-161-18/+19
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Ɓukasz Langa2023-10-141-0/+6
* gh-109693: Update pyruntimestate._finalizing to use pyatomic.h (gh-110837)Donghee Na2023-10-131-4/+3
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2023-10-132-1/+12
|\
| * gh-110805: Allow the repl to show source code and complete tracebacks (#110775)Pablo Galindo Salgado2023-10-132-1/+12
* | Post 3.13.0a1Thomas Wouters2023-10-131-1/+1
* | Python 3.13.0a1v3.13.0a1Thomas Wouters2023-10-131-2/+2
|/
* gh-109693: Update _gil_runtime_state.last_holder to use pyatomic.h (#110605)Donghee Na2023-10-131-2/+2
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-121-3/+2
* gh-109094: remove redundant arg to _PyFrame_PushTrampolineUnchecked (GH-110759)Irit Katriel2023-10-121-2/+2
* GH-109214: Convert _SAVE_CURRENT_IP to _SET_IP in tier 2 trace creation. (GH-...Mark Shannon2023-10-121-4/+4
* gh-85283: If Py_LIMITED_API is defined, undefine Py_BUILD_CORE (#110725)Victor Stinner2023-10-111-4/+9
* gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...Serhiy Storchaka2023-10-111-0/+9
* gh-109693: Update pycore_interp.h to use pyatomic.h (#110604)Donghee Na2023-10-101-4/+3
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-0/+2
* gh-109693: Use pyatomic.h for signal module (gh-110480)Donghee Na2023-10-091-9/+7
* gh-76785: Add SendChannel.send_buffer() (#110246)Eric Snow2023-10-094-2/+39
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-075-1/+11
* gh-110397: Add Py_IsFinalizing() to the stable ABI (#110441)Victor Stinner2023-10-072-2/+4
* gh-85283: Add PySys_AuditTuple() function (#108965)Victor Stinner2023-10-051-1/+5
* gh-109549: Add new states to PyThreadState to support PEP 703 (gh-109915)Sam Gross2023-10-053-1/+46
* gh-109329: Add stat for "trace too short" (GH-110402)Michael Droettboom2023-10-051-0/+1
* gh-88402: Add new sysconfig variables on Windows (GH-110049)Sam Gross2023-10-041-0/+57
* gh-110310: Add a Per-Interpreter XID Registry for Heap Types (gh-110311)Eric Snow2023-10-042-19/+30
* GH-109329: Add tier 2 stats (GH-109913)Michael Droettboom2023-10-042-4/+39
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-044-18/+39
* gh-104909: Split more LOAD_ATTR specializations (GH-110317)Guido van Rossum2023-10-041-35/+111
* gh-109979: Unify _GUARD_TYPE_VERSION{,_STORE} (#110301)Guido van Rossum2023-10-031-39/+32
* gh-108867: Add PyThreadState_GetUnchecked() function (#108870)Victor Stinner2023-10-034-4/+4
* gh-109860: Use a New Thread State When Switching Interpreters, When Necessary...Eric Snow2023-10-033-1/+14
* gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109...Eric Snow2023-10-023-0/+8
* gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994)Eric Snow2023-10-021-0/+3
* gh-107073: Make PyObject_VisitManagedDict() public (#108763)Victor Stinner2023-10-021-2/+2
* gh-110014: Remove PY_TIMEOUT_MAX from limited C API (#110217)Victor Stinner2023-10-022-13/+12
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-302-8/+25
* gh-110014: Fix _POSIX_THREADS and _POSIX_SEMAPHORES usage (#110139)Victor Stinner2023-09-304-51/+28