summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* gh-63284: Add support for TLS-PSK (pre-shared key) to the ssl module (#103181)Grant Ramsay2023-11-274-0/+12
* gh-76785: Return an "excinfo" Object From Interpreter.run() (gh-111573)Eric Snow2023-11-231-15/+18
* gh-76785: Add _PyType_GetModuleName() to the Internal C-API (gh-112323)Eric Snow2023-11-221-0/+5
* Post 3.13.0a2Thomas Wouters2023-11-221-1/+1
* Python 3.13.0a2v3.13.0a2Thomas Wouters2023-11-221-2/+2
* gh-112287: Speed up Tier 2 (uop) interpreter a little (#112286)Guido van Rossum2023-11-201-1/+1
* gh-106529: Make FOR_ITER a viable uop (#112134)Guido van Rossum2023-11-201-39/+47
* gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)Hugo van Kemenade2023-11-206-28/+28
* gh-111926: Update _PyWeakref_IS_DEAD to be thread-safe (gh-112267)Donghee Na2023-11-191-4/+11
* gh-106529: Cleanups split off gh-112134 (#112214)Guido van Rossum2023-11-171-1/+1
* gh-111956: Add thread-safe one-time initialization. (gh-111960)Sam Gross2023-11-164-7/+44
* gh-111798: Use lower Py_C_RECURSION_LIMIT in debug mode (#112124)Victor Stinner2023-11-161-1/+5
* gh-112026: Add again _PyThreadState_UncheckedGet() function (#112121)Victor Stinner2023-11-151-0/+3
* gh-112026: Restore removed _PyDict_GetItemStringWithError() (#112119)Victor Stinner2023-11-151-1/+1
* gh-112026: Restore removed private C API (#112115)Victor Stinner2023-11-1518-235/+263
* gh-112026: Add again <unistd.h> include in Python.h (#112046)Victor Stinner2023-11-151-3/+12
* GH-111848: Set the IP when de-optimizing (GH-112065)Mark Shannon2023-11-152-54/+55
* gh-111545: Add Include/cpython/pyhash.h header file (#112063)Victor Stinner2023-11-152-13/+19
* GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)Mark Shannon2023-11-141-55/+87
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-142-1/+7
* gh-107149: make new opcode util functions private rather than public and unst...Irit Katriel2023-11-142-12/+14
* gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)Victor Stinner2023-11-131-0/+3
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-101-0/+4
* gh-111569: Fix critical sections test on WebAssembly (GH-111897)Sam Gross2023-11-091-0/+8
* gh-81925: Implement native thread ids for kFreeBSD (#111761)Samuel Thibault2023-11-091-1/+2
* GH-111843: Tier 2 exponential backoff (GH-111850)Mark Shannon2023-11-091-0/+4
* GH-109369: Exit tier 2 if executor is invalid (GH-111657)Mark Shannon2023-11-091-224/+233
* gh-111354: remove comparisons with enum values, variable reuse, unused import...Irit Katriel2023-11-091-0/+1
* gh-111569: Implement Python critical section API (gh-111571)Sam Gross2023-11-084-5/+272
* GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...Mark Shannon2023-11-081-18/+21
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-072-19/+27
* GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111...Mark Shannon2023-11-071-1/+9
* GH-111485: Make BEFORE_WITH a uop (GH-111812)Brandt Bucher2023-11-071-0/+1
* gh-76785: Move _Py_excinfo Functions Out of the Internal C-API (gh-111715)Eric Snow2023-11-062-24/+11
* gh-111698: Restrict Py_mod_multiple_interpreters to 3.12+ Under Py_LIMITED_AP...Eric Snow2023-11-061-1/+3
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-042-0/+43
* gh-111506: Implement Py_SET_REFCNT() as opaque function in limited C API (#11...Victor Stinner2023-11-031-2/+11
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-033-1/+4
* gh-111652: Fix --enable-pystats build (GH-111653)Michael Droettboom2023-11-031-0/+2
* gh-106168: Revert the "size before item" setting (#111683)scoder2023-11-031-1/+1
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-033-80/+83
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-5/+0
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-023-78/+80
* gh-76785: Crossinterp utils additions (gh-111530)Eric Snow2023-11-015-4/+161
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-011-78/+253
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)Victor Stinner2023-11-011-4/+4
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-0/+2
* gh-108765: Python.h no longer includes <stddef.h> on Windows (#111563)Victor Stinner2023-10-311-3/+0
* GH-111485: Remove some special cases from the code generator and bytecodes.c ...Mark Shannon2023-10-311-17/+19
* GH-111485: Increment `next_instr` consistently at the start of the instructio...Mark Shannon2023-10-311-5/+6