summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) (#...Jelle Zijlstra2024-06-041-0/+2
* [3.12] gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpre...Eric Snow2024-05-224-0/+6
* [3.12] gh-118997: Fix _Py_ClearImmortal() assertion (#119001)Victor Stinner2024-05-181-1/+1
* [3.12] gh-118272: Clear generator frame's locals when the generator is closed...Irit Katriel2024-05-021-0/+3
* [3.12] chore: fix typos (#116345) (#116370)Terry Jan Reedy2024-03-051-1/+1
* [3.12] gh-114828: parenthesize non-atomic macro definitions in pycore_symtabl...Miss Islington (bot)2024-02-071-12/+12
* [3.12] gh-106905: Use separate structs to track recursion depth in each PyAST...Serhiy Storchaka2023-12-251-2/+2
* [3.12] gh-113297: Fix segfault in compiler for with statement with 19 context...Irit Katriel2023-12-231-1/+1
* [3.12] gh-112867: fix for WITH_PYMALLOC_RADIX_TREE=0 (GH-112885) (#113068)Miss Islington (bot)2023-12-131-0/+2
* [3.12] gh-112125: Fix None.__ne__(None) returning NotImplemented instead of â...Victor Stinner2023-12-071-0/+2
* [3.12] gh-106550: Fix sign conversion in pycore_code.h (GH-112613) (#112696)Miss Islington (bot)2023-12-041-10/+12
* [3.12] gh-112367: Only free perf trampoline arenas at shutdown (GH-112368) (#...Pablo Galindo Salgado2023-12-011-0/+1
* [3.12] gh-111058: Change coro.cr_frame/gen.gi_frame to be None for a closed c...Miss Islington (bot)2023-12-011-0/+2
* [3.12] gh-109894: Fix initialization of static `MemoryError` in subinterprete...Miss Islington (bot)2023-11-281-0/+1
* [3.12] gh-110310: Add a Per-Interpreter XID Registry for Heap Types (gh-11031...Eric Snow2023-11-282-19/+29
* [3.12] gh-105716: Support Background Threads in Subinterpreters Consistently ...Eric Snow2023-11-282-0/+7
* [3.12] gh-109793: Allow Switching Interpreters During Finalization (gh-109794...Eric Snow2023-11-283-2/+41
* [3.12] gh-106931: Intern Statically Allocated Strings Globally (gh-107272) (g...Eric Snow2023-11-274-0/+9
* [3.12] gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994) (gh-110701)Eric Snow2023-11-271-0/+5
* [3.12] gh-76785: Use Pending Calls When Releasing Cross-Interpreter Data (gh-...Eric Snow2023-11-271-0/+2
* [3.12] gh-108987: Fix _thread.start_new_thread() race condition (#109135) (#1...Victor Stinner2023-10-041-0/+2
* [3.12] gh-104690: thread_run() checks for tstate dangling pointer (#109056) (...Victor Stinner2023-10-021-0/+4
* [3.12] GH-108390: Prevent non-local events being set with `sys.monitoring.set...Mark Shannon2023-09-052-2/+2
* [3.12] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107981)Steve Dower2023-08-161-1/+2
* [3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (#...Eric Snow2023-08-163-6/+23
* [3.12] GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107...Miss Islington (bot)2023-08-111-4/+0
* [3.12] gh-107630: Revert "[3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under I...Eric Snow2023-08-053-22/+6
* [3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (g...Miss Islington (bot)2023-08-033-6/+22
* [3.12] gh-105699: Use a _Py_hashtable_t for the PyModuleDef Cache (gh-106974)...Eric Snow2023-07-283-17/+6
* [3.12] GH-106895: Raise a `ValueError` when attempting to disable events that...Mark Shannon2023-07-281-1/+2
* [3.12] GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291) (GH-10...Mark Shannon2023-07-281-2/+3
* [3.12] gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-...Miss Islington (bot)2023-07-272-23/+1
* [3.12] GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#1070...Victor Stinner2023-07-221-2/+2
* [3.12] gh-105340: include hidden fast-locals in locals() (GH-105715) (#106470)Miss Islington (bot)2023-07-052-0/+4
* [3.12] gh-106140: Reorder some more fields to facilitate out-of-process inspe...Pablo Galindo Salgado2023-06-271-7/+8
* [3.12] gh-106140: Reorder some fields to facilitate out-of-process inspection...Miss Islington (bot)2023-06-272-41/+52
* [3.12] gh-105587: Remove assertion from `_PyStaticObject_CheckRefcnt` (GH-105...Miss Islington (bot)2023-06-141-3/+2
* [3.12] gh-104812: Run Pending Calls in any Thread (gh-104813) (gh-105752)Eric Snow2023-06-143-27/+22
* [3.12] gh-100227: Lock Around Modification of the Global Allocators State (gh...Miss Islington (bot)2023-06-082-3/+4
* [3.12] gh-100227: Lock Around Adding Global Audit Hooks (gh-105515) (gh-105525)Eric Snow2023-06-081-1/+4
* [3.12] gh-100227: Lock Around Use of the Global "atexit" State (gh-105514) (g...Miss Islington (bot)2023-06-081-0/+1
* [3.12] gh-104341: Call _PyEval_ReleaseLock() with NULL When Finalizing the Cu...Miss Islington (bot)2023-06-011-1/+1
* [3.12] gh-105020: Share tp_bases and tp_mro Between Interpreters For All Stat...Miss Islington (bot)2023-06-012-4/+17
* gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)Miss Islington (bot)2023-05-304-0/+18
* [3.12] gh-104799: Move location of type_params AST fields (GH-104828) (#104974)Miss Islington (bot)2023-05-301-18/+18
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-222-28/+29
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-211-20/+15
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-215-1/+9
* gh-94906: Support multiple steps in math.nextafter (#103881)Matthias Görgens2023-05-194-0/+6
* gh-104602: ensure all cellvars are known up front (#104603)Carl Meyer2023-05-191-2/+3