summaryrefslogtreecommitdiffstats
path: root/Modules/_testinternalcapi.c
Commit message (Expand)AuthorAgeFilesLines
* gh-109723: Disable Py_BUILD_CORE in _testcapi (#109727)Victor Stinner2023-09-221-0/+62
* gh-109693: Remove pycore_atomic_funcs.h (#109694)Sam Gross2023-09-211-13/+0
* gh-108724: Add PyMutex and _PyParkingLot APIs (gh-109344)Sam Gross2023-09-191-0/+3
* GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)Victor Stinner2023-09-081-0/+5
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-041-1/+32
* gh-108777: Split _PyTime tests from _testinternalcapi.c (gh-108787)Sam Gross2023-09-021-261/+6
* gh-106320: Remove private _PyErr_ChainExceptions() (#108713)Victor Stinner2023-08-311-0/+103
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-241-0/+22
* gh-106320: Remove private _PyContext_NewHamtForTests() (#108434)Victor Stinner2023-08-241-1/+10
* gh-107211: No longer export internal functions (7) (#108425)Victor Stinner2023-08-241-2/+2
* gh-108216: Cleanup #include in internal header files (#108228)Victor Stinner2023-08-211-20/+18
* GH-106485: Handle dict subclasses correctly when dematerializing `__dict__` (...Mark Shannon2023-08-101-0/+36
* gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)Eric Snow2023-07-271-6/+6
* gh-106320: Remove private _PyMem API (#107187)Victor Stinner2023-07-241-0/+13
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-231-1/+80
* gh-106320: Remove private _PyInterpreterID C API (#107053)Victor Stinner2023-07-221-2/+2
* gh-86493: Fix possible leaks in some modules initialization (GH-106768)Serhiy Storchaka2023-07-181-4/+4
* gh-81283: compiler: remove indent from docstring (#106411)Inada Naoki2023-07-151-1/+19
* gh-105235: Prevent reading outside buffer during mmap.find() (#105252)Dennis Sweeney2023-07-131-0/+114
* GH-106360: Support very basic superblock introspection (#106422)Mark Shannon2023-07-041-0/+21
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-0/+33
* gh-106320: Remove _PyUnicode_TransformDecimalAndSpaceToASCII() (#106398)Victor Stinner2023-07-041-0/+12
* gh-106320: Use _PyInterpreterState_GET() (#106336)Victor Stinner2023-07-021-3/+3
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-2/+0
* gh-106320: Remove private _PyInterpreterState functions (#106325)Victor Stinner2023-07-021-0/+22
* gh-106320: Remove private _PyTraceMalloc C API functions (#106324)Victor Stinner2023-07-021-1/+19
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-011-0/+266
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-271-0/+7
* GH-104584: Assorted fixes for the optimizer API. (GH-105683)Mark Shannon2023-06-191-0/+10
* gh-104812: Run Pending Calls in any Thread (gh-104813)Eric Snow2023-06-131-1/+121
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-0/+18
* gh-103295: fix stack overwrite on 32-bit in perf map test harness (#104811)Carl Meyer2023-05-231-4/+9
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-211-0/+27
* gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)Carl Meyer2023-05-181-3/+4
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-0/+36
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+2
* gh-104240: return code unit metadata from codegen (#104300)Irit Katriel2023-05-091-1/+1
* gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)Irit Katriel2023-05-071-3/+5
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-051-0/+7
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-87092: Expose assembler to unit tests (#103988)Irit Katriel2023-05-011-1/+64
* gh-101758: Add a Test For Single-Phase Init Modules in Multiple Interpreters ...Eric Snow2023-02-151-0/+15
* GH-100997: fix refleak in `_testinternalcapi.c` (#101058)Kumar Aditya2023-01-161-0/+1
* GH-100997: Implement Multi-Phase Init for the _testinternalcapi Module (gh-10...Eric Snow2023-01-121-30/+117
* gh-99537: Use Py_SETREF() function in C code (#99656)Victor Stinner2022-11-221-2/+1
* gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)Irit Katriel2022-11-141-1/+22
* gh-99300: Use Py_NewRef() in Modules/ directory (#99440)Victor Stinner2022-11-131-2/+1
* gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...Eric Snow2022-10-261-0/+46
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-051-3/+1
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-251-1/+3