summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi
Commit message (Expand)AuthorAgeFilesLines
* gh-116417: Move limited C API list.c tests to _testlimitedcapi (#116602)Victor Stinner2024-03-182-321/+1
* gh-116417: Move 4 limited C API test files to _testlimitedcapi (#116571)Victor Stinner2024-03-115-498/+0
* gh-116417: Fix make check-c-globals for _testlimitedcapi (#116570)Victor Stinner2024-03-101-4/+0
* gh-116417: Add _testlimitedcapi C extension (#116419)Victor Stinner2024-03-074-567/+0
* gh-110850: Enhance PyTime C API tests (#115715)Victor Stinner2024-02-201-4/+9
* gh-115417: Remove accidentally left debugging print (#115418)Kirill Podoprigora2024-02-131-1/+0
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-121-1/+47
* gh-110850: Add PyTime_t C API (GH-115215)Petr Viktorin2024-02-122-0/+106
* gh-112066: Add `PyDict_SetDefaultRef` function. (#112123)Sam Gross2024-02-061-0/+26
* gh-114329: Add `PyList_GetItemRef` function (GH-114504)Sam Gross2024-02-021-0/+13
* GH-113710: Add a "globals to constants" pass (GH-114592)Mark Shannon2024-02-021-2/+2
* gh-114685: Check flags in PyObject_GetBuffer() (GH-114707)Serhiy Storchaka2024-01-311-2/+4
* gh-114101: Correct PyErr_Format arguments in _testcapi module (#114102)AN Long2024-01-161-2/+2
* gh-113787: Fix refleaks in test_capi (gh-113816)neonene2024-01-081-1/+1
* gh-113750: Fix object resurrection in free-threaded builds (gh-113751)Sam Gross2024-01-061-3/+1
* bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085)Zackery Spytz2023-12-141-8/+38
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-132-4/+0
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-061-0/+16
* Add more C API tests (GH-112522)Serhiy Storchaka2023-11-291-0/+33
* gh-109802: Increase test coverage for complexobject.c (GH-112452)Sergey B Kirpichev2023-11-281-0/+59
* gh-112438: Fix support of format units with the "e" prefix in nested tuples i...Serhiy Storchaka2023-11-271-5/+9
* gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)Hugo van Kemenade2023-11-202-4/+4
* gh-111545: Test PyHash_GetFuncDef() function (#112098)Victor Stinner2023-11-152-0/+57
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-141-1/+86
* gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)Victor Stinner2023-11-131-0/+21
* 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