summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi
Commit message (Expand)AuthorAgeFilesLines
* gh-111495: Add tests for PyList C API (#111562)Kalyan2023-11-081-1/+179
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-071-3/+13
* gh-111495: Add tests for PyComplex C API (GH-111591)Sergey B Kirpichev2023-11-051-0/+92
* gh-111495: Add tests for PyFloat C API (GH-111624)Sergey B Kirpichev2023-11-051-0/+74
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-011-13/+3
* gh-111495: Add tests for PyBytes and PyByteArray C API (GH-111496)Serhiy Storchaka2023-11-012-0/+344
* gh-111495: add stub files for C API test modules (GH-111586)Sergey B Kirpichev2023-11-019-2/+144
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-0/+25
* gh-108082: C API: Add tests for PyErr_WriteUnraisable() (GH-111455)Serhiy Storchaka2023-10-301-0/+17
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-302-0/+14
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-301-0/+9
* gh-94808: Add coverage test for number check (gh-111445)Evan Kohilas2023-10-291-0/+7
* gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111067)Serhiy Storchaka2023-10-252-0/+57
* gh-110572: Remove `test_*` from `_testcapi/getargs.c` (GH-111214)Nikita Sobolev2023-10-241-206/+14
* gh-110572: Fix potential leaks in test_*_code in _testcapi/getargs.c (GH-110573)Nikita Sobolev2023-10-211-33/+57
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-201-1/+1
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-179-16/+41
* gh-109693: Update _gil_runtime_state.locked to use pyatomic.h (gh-110836)Donghee Na2023-10-161-0/+16
* gh-110628: Add tests for PyLong C API (GH-110629)Serhiy Storchaka2023-10-141-0/+222
* gh-110815: Improve tests for PyArg_ParseTupleAndKeywords() (GH-110817)Serhiy Storchaka2023-10-131-13/+39
* gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...Serhiy Storchaka2023-10-111-0/+44
* gh-110525: Cover PySet_Add corner case with frozenset objects (GH-110544)Nikita Sobolev2023-10-091-0/+37
* gh-110549: Remove unused includes of <stddef.h> in _testcapi (GH-110552)Nikita Sobolev2023-10-093-6/+0
* gh-110525: Add CAPI tests for set and frozenset objects (GH-110526)Nikita Sobolev2023-10-092-0/+163
* gh-107073: Make PyObject_VisitManagedDict() public (#108763)Victor Stinner2023-10-021-3/+3
* gh-104469: Convert _testcapi/vectorcall_limited.c to use AC (#109691)Victor Stinner2023-09-252-5/+47
* gh-109723: Disable Py_BUILD_CORE in _testcapi (#109727)Victor Stinner2023-09-224-75/+17
* gh-108724: Add PyMutex and _PyParkingLot APIs (gh-109344)Sam Gross2023-09-191-1/+0
* gh-109469: Silence compiler warnings on string comparisons in _testcapi (GH-1...Serhiy Storchaka2023-09-191-1/+2
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-171-0/+54
* gh-107782: Use _testcapi to test non-representable signatures (GH-109325)Serhiy Storchaka2023-09-141-0/+44
* gh-109050: Remove remaining tests for legacy Unicode C API (GH-109068)Serhiy Storchaka2023-09-091-52/+0
* gh-109045: Remove remaining LIMITED_API_AVAILABLE checks in tests (#109046)Anders Kaseorg2023-09-072-10/+0
* C API tests: use special markers to test that output parameters were set (GH-...Serhiy Storchaka2023-09-066-26/+50
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-042-64/+1
* gh-108777: Split _PyTime tests from _testinternalcapi.c (gh-108787)Sam Gross2023-09-021-0/+0
* Add Modules/_testcapi/util.h header (GH-108774)Serhiy Storchaka2023-09-015-77/+46
* gh-106320: Remove private _PyLong_Sign() (#108743)Victor Stinner2023-09-011-0/+5
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-315-32/+7
* gh-108337: Add pyatomic.h header (#108701)Victor Stinner2023-08-312-0/+181
* gh-108634: Py_TRACE_REFS uses a hash table (#108663)Victor Stinner2023-08-311-21/+0
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-243-10/+10
* gh-108444: Add PyLong_AsInt() public function (#108445)Victor Stinner2023-08-242-1/+34
* gh-108314: Add PyDict_ContainsString() function (#108323)Victor Stinner2023-08-241-0/+14
* gh-106320: Remove _PyDict_GetItemStringWithError() function (#108313)Victor Stinner2023-08-221-4/+5
* gh-107915: Handle errors in C API functions PyErr_Set*() and PyErr_Format() (...Serhiy Storchaka2023-08-192-1/+104
* Revert "gh-104469 : Convert _testcapi/vectorcall_limited.c to use AC … (gh-...Dong-hee Na2023-08-142-68/+4
* gh-104469 : Convert _testcapi/vectorcall_limited.c to use AC (gh-107857)nahyeon2023-08-122-4/+68
* gh-84805: Autogenerate signature for METH_NOARGS and METH_O extension functio...Serhiy Storchaka2023-08-111-9/+55
* gh-91054: make code watcher tests resilient to other watchers (#107821)Carl Meyer2023-08-091-3/+11