summaryrefslogtreecommitdiffstats
path: root/Include/methodobject.h
Commit message (Expand)AuthorAgeFilesLines
* gh-114626: Add again _PyCFunctionFastWithKeywords name (GH-115561)Victor Stinner2024-02-191-1/+1
* gh-114626: add PyCFunctionFast and PyCFunctionFastWithKeywords (GH-114627)David Hewitt2024-02-151-4/+11
* gh-105107: Remove PyCFunction_Call() function (#105181)Victor Stinner2023-06-011-2/+0
* gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)Victor Stinner2022-06-161-2/+2
* gh-92135: Rename _Py_reinterpret_cast() to _Py_CAST() (#92230)Victor Stinner2022-05-031-1/+1
* gh-92135: Fix _Py_reinterpret_cast() for const (#92138)Victor Stinner2022-05-021-2/+1
* gh-91320: Add _Py_reinterpret_cast() macro (#91959)Victor Stinner2022-04-271-1/+3
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-311-0/+18
* bpo-45459: Add pytypedefs.h header file (GH-31527)Victor Stinner2022-02-241-1/+0
* bpo-45434: Remove useless space in includes (GH-28963)Victor Stinner2021-10-141-5/+3
* bpo-43688: Fix Py_LIMITED_API version of xxlimited (GH-25135)Victor Stinner2021-04-011-4/+4
* bpo-43239: Export PyCFunction_New with PyAPI_FUNC (GH-24551)Petr Viktorin2021-02-231-0/+6
* bpo-42171: Add PEP573-related items to the limited API (GH-23009)Petr Viktorin2020-11-101-1/+1
* bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)scoder2020-05-121-1/+2
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-071-20/+28
* bpo-39573: Add Py_IS_TYPE() function (GH-18488)Dong-hee Na2020-02-131-1/+1
* bpo-39372: Clean header files of declared interfaces with no implementations ...Pablo Galindo2020-01-181-2/+0
* bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...Victor Stinner2019-11-201-2/+0
* bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)Jeroen Demeyer2019-09-111-1/+1
* bpo-37340: remove free_list for bound method objects (GH-14232)Inada Naoki2019-07-261-5/+0
* bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603)Jeroen Demeyer2019-07-051-14/+0
* bpo-36974: separate vectorcall functions for each calling convention (GH-13781)Jeroen Demeyer2019-07-051-7/+0
* bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)Jeroen Demeyer2019-06-201-5/+0
* bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer2019-05-301-1/+1
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-291-1/+2
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-6/+6
* bpo-31890: define METH_STACKLESS (#4159)Anselm Kruis2017-11-021-0/+9
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-031-2/+4
* Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-021-0/+7
* Optimize methoddescr_call(): avoid temporary PyCFunctionVictor Stinner2017-01-181-0/+7
* Issue #27810: Exclude METH_FASTCALL from the stable APIVictor Stinner2016-09-121-1/+1
* Add METH_FASTCALL calling conventionVictor Stinner2016-09-101-0/+4
* Issue #27810: Add _PyCFunction_FastCallKeywords()Victor Stinner2016-09-091-0/+5
* Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-241-1/+2
* _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-221-1/+1
* Add _PyObject_FastCall()Victor Stinner2016-08-191-0/+6
* Removed trailing whitespaces in miscalenous files.Serhiy Storchaka2015-04-031-2/+2
* Issue #22116: C functions and methods (of the 'builtin_function_or_method' ty...Antoine Pitrou2014-08-061-0/+1
* Revert back PyCFunction_New macro. Keep PyCFunction_NewEx usage in python cor...Andrew Svetlov2012-12-261-1/+1
* Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-251-1/+1
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+5
* Reformat by replacing tabs with 4-spaces. Makes the code more PEP-7 compliantEli Bendersky2012-04-051-8/+8
* Issue #13577: Built-in methods and functions now have a __qualname__.Antoine Pitrou2011-12-231-1/+2
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+4
* #3247: get rid of Py_FindMethodAmaury Forgeot d'Arc2008-07-021-10/+0
* Oops, forgot that there are modules outside the win32 world.Amaury Forgeot d'Arc2008-07-021-0/+10
* #3247: Get rid of Py_FindMethod:Amaury Forgeot d'Arc2008-07-021-10/+0
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-0/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Get rid of METH_OLDARGS.Georg Brandl2007-09-011-1/+1