summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Oops, forgot that there are modules outside the win32 world.Amaury Forgeot d'Arc2008-07-021-0/+37
* #3247: Get rid of Py_FindMethod:Amaury Forgeot d'Arc2008-07-021-37/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-1/+1
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-2/+11
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-061-3/+19
* Fixed some build issues and updated docs.Christian Heimes2007-11-171-1/+1
* Get rid of METH_OLDARGS.Georg Brandl2007-09-011-13/+4
* CFunctions' doc strings should be Unicode.Guido van Rossum2007-08-231-2/+2
* Remove support for __members__ and __methods__. There still might beNeal Norwitz2007-08-111-35/+0
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-2/+2
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-2/+2
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-5/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-11/+25