summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (GH-118807...Miss Islington (bot)2024-06-181-0/+8
* [3.13] gh-117398: Add datetime C-API type check test for subinterpreters (gh-...Miss Islington (bot)2024-06-131-3/+45
* [3.13] gh-118692: Avoid creating unnecessary StopIteration instances for moni...Miss Islington (bot)2024-05-241-4/+5
* gh-112075: use per-thread dict version pool (#118676)Dino Viehland2024-05-071-1/+13
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-061-1/+2
* gh-111997: C-API for signalling monitoring events (#116413)Irit Katriel2024-05-042-0/+508
* gh-82062: Fix support of parameter defaults on methods in extension modules (...Sergey B Kirpichev2024-05-021-0/+10
* gh-110850: Add PyTime_TimeRaw() function (#118394)Victor Stinner2024-05-011-0/+60
* gh-118422: Fix run_fileexflags() test (#118429)Victor Stinner2024-04-301-7/+6
* gh-117968: Make the test for closed file more safe in the C API tests (GH-118...Serhiy Storchaka2024-04-251-2/+4
* gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)Joe Jevnik2024-04-231-0/+118
* gh-117968: Add tests for the part of the PyRun family of the C API (GH-117982)Serhiy Storchaka2024-04-172-0/+113
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-051-7/+7
* gh-94808: Fix refcounting in PyObject_Print tests (GH-117421)Petr Viktorin2024-04-011-0/+4
* gh-94808:Improve coverage of PyObject_Print (GH-98749)MonadChains2024-04-012-0/+134
* gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resize() (GH-11...Serhiy Storchaka2024-03-252-0/+54
* gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)Serhiy Storchaka2024-03-221-0/+11
* gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platf...Serhiy Storchaka2024-03-201-0/+12
* gh-116417: Move limited C API complex.c tests to _testlimitedcapi (#117014)Victor Stinner2024-03-191-61/+0
* gh-116417: Move limited C API dict.c tests to _testlimitedcapi (#117006)Victor Stinner2024-03-191-278/+1
* gh-116417: Move limited C API long.c tests to _testlimitedcapi (#117001)Victor Stinner2024-03-193-1100/+2
* gh-116417: Move limited C API unicode.c tests to _testlimitedcapi (#116993)Victor Stinner2024-03-191-1881/+18
* gh-116417: Move limited C API abstract.c tests to _testlimitedcapi (#116986)Victor Stinner2024-03-192-646/+10
* 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