summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
Commit message (Expand)AuthorAgeFilesLines
* Backed out changeset f23fa1f7b68fHEADmasterVictor 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-50/+57
|\
| * 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 #21354: PyCFunction_New function is exposed by python DLL again.Andrew Svetlov2015-04-271-1/+1
|/
* 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
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-61/+6
* Silence expression result unused warnings with clang.Christian Heimes2013-12-041-1/+1
* Make built-in methods picklable through the reduce protocol.Alexandre Vassalotti2013-11-241-1/+21
* Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-5/+66
* Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception wasVictor Stinner2013-07-111-7/+23
* Fix supernumerary 's' in sys._debugmallocstats() output.Antoine Pitrou2013-04-111-14/+9
|\
| * Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats().Antoine Pitrou2012-12-301-2/+2
| |\
| * | Fix compilation error for #15422Andrew Svetlov2012-12-261-0/+3
| * | Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-251-14/+6
* | | Fix supernumerary 's' in sys._debugmallocstats() output.Antoine Pitrou2013-04-111-1/+1
| |/ |/|
* | Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats().Antoine Pitrou2012-12-301-2/+2
|/
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+9
* Issue #13577: Built-in methods and functions now have a __qualname__.Antoine Pitrou2011-12-231-4/+40
* Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-101-2/+1
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-198/+198
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* #3247: get rid of Py_FindMethodAmaury Forgeot d'Arc2008-07-021-37/+0