summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-117968: Add tests for the part of the PyRun family of the C API (GH...Serhiy Storchaka2024-04-221-0/+13
* [3.12] gh-117694: Improve tests for PyEval_EvalCodeEx() (GH-117695) (GH-117884)Miss Islington (bot)2024-04-151-80/+33
* [3.12] gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bi...Serhiy Storchaka2024-03-201-0/+1
* [3.12] Check for valid tp_version_tag in specializer (gh-89811) (gh-114216)Peter Lazorchak2024-01-191-0/+29
* [3.12] bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085) (G...Miss Islington (bot)2023-12-141-6/+12
* [3.12] gh-111495: add stub files for C API test modules (GH-111586) (GH-111592)Sergey B Kirpichev2023-11-011-0/+24
* [3.12] gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111...Serhiy Storchaka2023-10-251-31/+3
* [3.12] gh-110628: Add tests for PyLong C API (GH-110629) (GH-110854)Serhiy Storchaka2023-10-141-0/+2
* [3.12] gh-84489: C API: Add tests for Py_BuildValue() (GH-110596) (GH-110680)Miss Islington (bot)2023-10-111-0/+37
* [3.12] gh-110525: Add CAPI tests for set and frozenset objects (GH-110526). (...Nikita Sobolev2023-10-091-0/+3
* [3.12] gh-109496: Detect Py_DECREF() after dealloc in debug mode (GH-109539) ...Miss Islington (bot)2023-09-181-0/+21
* [3.12] C API tests: use special markers to test that output parameters were s...Serhiy Storchaka2023-09-081-0/+6
* [3.12] Add Modules/_testcapi/util.h header (GH-108774) (#108780)Miss Islington (bot)2023-09-021-16/+2
* [3.12] gh-107178: Add the C API tests for the Abstract Objects Layer (GH-1071...Serhiy Storchaka2023-08-161-162/+7
* [3.12] gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject()...Serhiy Storchaka2023-08-161-0/+41
* [3.12] gh-105227: Add PyType_GetDict() (GH-105747) (#106600)Miss Islington (bot)2023-07-101-0/+25
* [3.12] gh-105603: Change the PyInterpreterConfig.own gil Field (gh-105620) (g...Miss Islington (bot)2023-06-131-7/+7
* [3.12] gh-104614: Fix potential ref. leak in _testcapimodule/get_basic_static...Miss Islington (bot)2023-06-021-1/+3
* [3.12] gh-104614: Make Sure ob_type is Always Set Correctly by PyType_Ready()...Miss Islington (bot)2023-06-011-0/+45
* [3.12] gh-105020: Share tp_bases and tp_mro Between Interpreters For All Stat...Miss Islington (bot)2023-06-011-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