summaryrefslogtreecommitdiff
path: root/Objects/capsule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-221-2/+1
* bpo-45855: document that `no_block` has no use anymore in PyCapsule_Import (#...Georg Brandl2021-12-121-7/+3
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-121-1/+1
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-011-2/+2
* bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)Victor Stinner2020-04-081-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-2/+2
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-1/+1
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-18/+18
* Use size_t instead of int for a PyMem_MALLOC argument; silences a gcc 'compa...Mark Dickinson2009-10-031-1/+1
* fix useless comparison #6355Benjamin Peterson2009-06-281-1/+1
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-0/+324