summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179)Serhiy Storchaka2023-08-073-0/+1018
* gh-107609: Fix duplicate module check in Argument Clinic (#107610)Erlend E. Aasland2023-08-041-2/+1
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-254-18/+19
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-68/+24
* gh-106320: Remove private _PyMem API (#107187)Victor Stinner2023-07-241-12/+0
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-231-75/+0
* gh-47146: Fix reference counting in _testcapi.structmember initializer (GH-10...Serhiy Storchaka2023-07-211-1/+1
* gh-86493: Use PyModule_Add() instead of PyModule_AddObjectRef() (GH-106860)Serhiy Storchaka2023-07-182-12/+4
* gh-99593: Add tests for Unicode C API (part 3) (GH-104728)Serhiy Storchaka2023-07-101-1/+506
* gh-104469: Convert_testcapi/vectorcall.c to use AC (gh-106557)littlebutt's workshop2023-07-092-25/+140
* gh-106320: Remove _PyUnicode_TransformDecimalAndSpaceToASCII() (#106398)Victor Stinner2023-07-041-9/+0
* gh-91053: make func watcher tests resilient to other func watchers (#106286)Carl Meyer2023-07-031-12/+11
* gh-106320: _testcapi avoids private _PyUnicode_EqualToASCIIString() (#106341)Victor Stinner2023-07-021-1/+1
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-024-6/+0
* gh-106320: Remove private _PyTraceMalloc C API functions (#106324)Victor Stinner2023-07-021-18/+0
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-012-275/+0
* gh-106023: Remove _PyObject_FastCall() function (#106265)Victor Stinner2023-06-301-18/+0
* gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr ...Serhiy Storchaka2023-06-231-1/+1
* gh-103968: PyType_FromMetaclass: Allow metaclasses with tp_new=NULL (GH-105386)Petr Viktorin2023-06-121-0/+13
* gh-105375: Harden error handling in `_testcapi/heaptype.c` (#105608)Erlend E. Aasland2023-06-091-1/+4
* gh-105156: Deprecate the old Py_UNICODE type in C API (#105157)Victor Stinner2023-06-011-4/+4
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-311-40/+0
* gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implementatio...Irit Katriel2023-05-302-1/+49
* gh-104469: Convert _testcapi/long to use AC (gh-104720)Dong-hee Na2023-05-232-35/+250
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-211-15/+48
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-211-0/+13
* gh-104469: Convert _testcapi/exceptions to use AC (gh-104502)Dong-hee Na2023-05-212-97/+531
* gh-104469: Update README.txt for _testcapi (gh-104529)Dong-hee Na2023-05-171-0/+7
* gh-104469: Convert _testcapi/watchers.c to use Argument Clinic (#104503)Nikita Sobolev2023-05-152-43/+259
* gh-104469 Convert _testcapi/float.c to use AC (gh-104470)Dong-hee Na2023-05-152-19/+123
* gh-93649: Split gc- and allocation tests from _testcapimodule.c (GH-104403)Jurica Bradarić2023-05-122-0/+345
* Trim trailing whitespace and test on CI (#104275)Hugo van Kemenade2023-05-081-1/+1
* gh-99593: Add tests for Unicode C API (part 2) (#99868)Serhiy Storchaka2023-05-041-27/+479
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-042-0/+103
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-043-1/+474
* gh-103968: Deprecate creating heap types whose metaclass has custom tp_new. (...Petr Viktorin2023-05-031-1/+15
* gh-84436: Add integration C API tests for immortal objects (gh-103962)Dong-hee Na2023-05-022-0/+48
* Fix typos in faulthandler, testcapi error messages (#103020)Liyang Zhang2023-03-251-2/+2
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-221-1/+1
* GH-94808: Cover `PyOS_mystrnicmp` and `PyOS_mystricmp` (gh-102469)Artem Mukhin2023-03-222-0/+61
* gh-102755: PyErr_DisplayException only in ABI >= 3.12. Tests cover PyErr_Disp...Irit Katriel2023-03-211-3/+13
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-161-10/+3
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+21