summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-94808: Add test coverage for PyObject_HasAttrString (#96627)MonadChains2022-10-031-0/+26
* gh-96821: Fix undefined behaviour in `_testcapimodule.c` (GH-96915)Matthias Görgens2022-09-191-1/+3
* gh-95991: Add some infrastructure for testing Limited API in _testcapi (GH-95...Petr Viktorin2022-08-171-3/+9
* gh-95878: Fix format char in datetime CAPI tests (GH-95879)Christian Heimes2022-08-111-4/+4
* gh-93649: Split unicode tests from _testcapimodule.c & add some more (GH-95819)Petr Viktorin2022-08-101-321/+3
* gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)Petr Viktorin2022-08-081-0/+3
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)Ken Jin2022-08-041-11/+69
* gh-93649: Split heaptype tests from _testcapimodule.c (GH-95386)Petr Viktorin2022-08-011-969/+14
* GH-92678: Expose managed dict clear and visit functions (#95246)Mark Shannon2022-07-251-0/+8
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Brandt Bucher2022-07-191-0/+16
* gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)Serhiy Storchaka2022-07-181-2/+21
* gh-93649: Split vectorcall testing from _testcapimodule.c (GH-94549)Petr Viktorin2022-07-081-250/+9
* gh-87347: Fix test_pymem_new() reference leak (#94330)Victor Stinner2022-06-271-15/+15
* gh-87347: Fix PyObject_NEW() regression (#94234)Victor Stinner2022-06-261-0/+43
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-201-1/+25
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-191-1/+0
* gh-89546: Clean up PyType_FromMetaclass (GH-93686)Petr Viktorin2022-06-141-1/+2
* gh-93466: Document PyType_Spec doesn't accept repeated slot IDs; raise where ...Petr Viktorin2022-06-101-0/+59
* bpo-45383: Get metaclass from bases in PyType_From* (GH-28748)Sebastian Berg2022-06-091-0/+160
* gh-82616: Add Py_IS_TYPE_SIGNED() macro (#93178)Victor Stinner2022-05-271-0/+15
* gh-60074: add new stable API function PyType_FromMetaclass (GH-93012)Wenzel Jakob2022-05-271-0/+73
* Fix NULL check in test_type_from_ephemeral_spec in_testcapimodule.c (GH-92863)Dennis Sweeney2022-05-171-1/+1
* GH-92236: Remove spurious "line" event when starting coroutine or generator. ...Mark Shannon2022-05-131-0/+46
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-121-175/+0
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-20/+20
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+24
* gh-91324: List feature macros in the stable ABI manifest, improve tests (GH-3...Petr Viktorin2022-04-281-0/+13
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-201-1/+2
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-181-1/+1
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-0/+11
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-0/+16
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+44
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-0/+81
* bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)Petr Viktorin2022-02-251-0/+3
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-1/+2
* bpo-46670: Remove unused macros in the Modules directory (GH-31194)Victor Stinner2022-02-071-2/+0
* bpo-40280: Allow to compile _testcapi as builtin module (GH-30559)Christian Heimes2022-01-121-0/+2
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-111-94/+0
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-021-6/+6
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+1
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-5/+12
* bpo-45822: Minor cleanups to the test_Py_CompileString test (GH-29750)Pablo Galindo Salgado2021-11-241-1/+1
* bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...Pablo Galindo Salgado2021-11-161-0/+14
* bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin2021-10-211-0/+121
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-151-6/+61
* bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner2021-10-151-2/+2
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-6/+6
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-6/+6
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-2/+2
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-14/+0