summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)Jeroen Demeyer2019-09-111-1/+36
* Make PyXXX_Fini() functions private (GH-15531)Victor Stinner2019-08-271-1/+1
* bpo-37340: remove free_list for bound method objects (GH-14232)Inada Naoki2019-07-261-47/+6
* bpo-36974: separate vectorcall functions for each calling convention (GH-13781)Jeroen Demeyer2019-07-051-8/+157
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-1/+1
* bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer2019-05-301-1/+1
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-291-2/+11
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-111-5/+2
* bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)Victor Stinner2018-11-231-1/+1
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-2/+2
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-11-011-2/+2
* bpo-35059: Convert PyObject_INIT() to function (GH-10077)Victor Stinner2018-10-261-1/+1
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-121-1/+1
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-311-9/+1
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-291-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-0/+2
* bpo-29524: Add Objects/call.c file (#12)Victor Stinner2017-02-121-323/+0
* Backed out changeset f23fa1f7b68fVictor Stinner2017-02-101-0/+323
* Issue #29465: Add Objects/call.c fileVictor Stinner2017-02-101-323/+0
* Fix PyCFunction_Call() performance issueVictor Stinner2017-02-091-4/+50
* Issue #29306: Fix usage of Py_EnterRecursiveCall()Victor Stinner2017-02-081-25/+36
* Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-031-23/+30
* Cleanup _PyMethodDef_RawFastCallDict()Victor Stinner2017-01-181-11/+9
* Rephrase !PyErr_Occurred() comment: may=>canVictor Stinner2017-01-181-1/+1
* PyCFunction_Call() now calls _PyCFunction_FastCallDict()Victor Stinner2017-01-181-70/+5
* Fix _PyMethodDef_RawFastCallDict() argument parsingVictor Stinner2017-01-181-14/+16
* Optimize methoddescr_call(): avoid temporary PyCFunctionVictor Stinner2017-01-181-15/+24
* Remove unused func parameter of _PyStack_UnpackDict()Victor Stinner2017-01-181-2/+1
* _PyStack_UnpackDict() now returns -1 on errorVictor Stinner2017-01-171-2/+2
* Optimize _PyCFunction_FastCallKeywords()Victor Stinner2017-01-161-36/+131
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-4/+5
* Fix warning in _PyCFunction_FastCallKeywords()Victor Stinner2016-09-121-2/+1
* Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-121-0/+5
* Revert change f860b7a775c5Victor Stinner2016-09-121-1/+1
* ssue #27213: Reintroduce checks in _PyStack_AsDict()Victor Stinner2016-09-121-1/+1
* Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-1/+1
* Add METH_FASTCALL calling conventionVictor Stinner2016-09-091-0/+24
* Issue #27810: Add _PyCFunction_FastCallKeywords()Victor Stinner2016-09-091-0/+26
* Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-251-2/+7
* _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-221-3/+3
* Add _PyObject_FastCall()Victor Stinner2016-08-191-0/+93
* More typos in 3.5 documentation and commentsMartin Panter2015-10-071-1/+1
* Merge 3.4Andrew Svetlov2015-04-271-1/+1
|\
| * Issue #21354: PyCFunction_New function is exposed by python DLL again.Andrew Svetlov2015-04-271-1/+1
* | Issue #23571: _Py_CheckFunctionResult() now gives the name of the functionVictor Stinner2015-03-211-1/+1
* | Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() nowVictor Stinner2015-03-061-49/+52
* | Issue #22116: C functions and methods (of the 'builtin_function_or_method' ty...Antoine Pitrou2014-08-061-1/+5
|/
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-2/+2
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-6/+2