summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-32/+0
* gh-106320: Remove private _PyImport C API functions (#106383)Victor Stinner2023-07-031-2/+8
* 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-5/+0
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-011-3/+0
* gh-105927: Deprecate PyWeakref_GetObject() function (#106006)Victor Stinner2023-06-261-0/+6
* gh-105927: Fix test_weakref_capi() refleak (#105966)Victor Stinner2023-06-211-16/+32
* gh-105927: Add PyWeakref_GetRef() function (#105932)Victor Stinner2023-06-211-0/+79
* gh-105922: Add PyImport_AddModuleRef() function (#105923)Victor Stinner2023-06-201-0/+48
* gh-105603: Change the PyInterpreterConfig.own gil Field (gh-105620)Eric Snow2023-06-131-7/+7
* gh-104614: Fix potential ref. leak in _testcapimodule/get_basic_static_type()...Erlend E. Aasland2023-06-021-1/+3
* gh-104614: Make Sure ob_type is Always Set Correctly by PyType_Ready() (gh-10...Eric Snow2023-06-011-0/+45
* gh-105107: Remove PyCFunction_Call() function (#105181)Victor Stinner2023-06-011-0/+14
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-311-47/+0
* gh-105020: Share tp_bases and tp_mro Between Interpreters For All Static Buil...Eric Snow2023-05-311-0/+23
* gh-104645: fix error handling in marshal tests (#104646)Irit Katriel2023-05-191-18/+14
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-191-0/+28
* gh-93649: Split gc- and allocation tests from _testcapimodule.c (GH-104403)Jurica Bradarić2023-05-121-326/+3
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-051-2/+10
* gh-104190: fix ubsan crash (#104191)sunmy20192023-05-051-1/+1
* gh-99593: Add tests for Unicode C API (part 2) (#99868)Serhiy Storchaka2023-05-041-0/+1
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-041-1/+3
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-041-0/+3
* gh-104109: Expose Py_NewInterpreterFromConfig() in the Public C-API (gh-104110)Eric Snow2023-05-031-2/+2
* gh-84436: Add integration C API tests for immortal objects (gh-103962)Dong-hee Na2023-05-021-0/+3
* gh-103743: Add PyUnstable_Object_GC_NewWithExtraData (GH-103744)Jurica Bradarić2023-05-021-1/+104
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-241-2/+10
* gh-103091: Add PyUnstable_Type_AssignVersionTag (#103095)Brett Simmers2023-04-241-0/+13
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-061-0/+32
* GH-94808: Cover `PyOS_mystrnicmp` and `PyOS_mystricmp` (gh-102469)Artem Mukhin2023-03-221-0/+3
* gh-98608: Stop Treating All Errors from _Py_NewInterpreterFromConfig() as Fat...Eric Snow2023-03-211-2/+6
* gh-102013: Add PyUnstable_GC_VisitObjects (#102014)Jacob Bower2023-03-141-0/+69
* gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)Eric Snow2023-03-081-6/+1
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-0/+3
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-241-4/+3
* gh-93649: Split exception tests from _testcapimodule.c (GH-102173)Erlend E. Aasland2023-02-231-287/+3
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-0/+11
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-161-2/+10
* gh-101819: Remove _testcapi dependencies on specific _io symbols (#101918)Erlend E. Aasland2023-02-151-2/+6
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-0/+37
* gh-101656: Fix "conversion from Py_ssize_t to int" warning in `_testcapimodul...Nikita Sobolev2023-02-071-3/+3
* gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...Matthieu Dartiailh2023-02-071-1/+140
* gh-59956: Add a Test to Verify GILState Matches the "Current" Thread State (g...Eric Snow2023-02-061-0/+37
* gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)Eric Snow2023-02-041-0/+54
* gh-101152: Implement PEP 699 (GH-101193)ram vikram singh2023-01-241-0/+3
* GH-100892: Fix race in clearing `threading.local` (#100922)Kumar Aditya2023-01-111-5/+36
* gh-100228: Warn from os.fork() if other threads exist. (#100229)Gregory P. Smith2022-12-291-0/+47
* gh-99110: Initialize `frame->previous` in init_frame to fix segmentation faul...Bill Fisher2022-12-231-0/+18
* gh-93649: Split tracemalloc tests from _testcapimodule.c (#99551)Erlend E. Aasland2022-12-171-75/+0
* gh-98724: Fix Py_CLEAR() macro side effects (#99100) (#100070)Victor Stinner2022-12-071-0/+87