summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
...
* Trivial cleanup: remove redundant variable stores in ceval.c (#2012)Adrian Wielgosik2017-06-231-6/+1
* bpo-30604: clean up co_extra support (#2144)Dino Viehland2017-06-211-4/+4
* bpo-16500: Use register_at_fork() in the threading module (#1843)Antoine Pitrou2017-05-281-18/+0
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-281-4/+4
* bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081)Nathaniel J. Smith2017-05-171-3/+14
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)Xiang Zhang2017-05-101-1/+1
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-301-7/+16
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-1/+1
* bpo-29849: fix a memory leak in import_from (GH-712)Xiang Zhang2017-03-211-10/+17
* bpo-29748: Added the slice index converter in Argument Clinic. (#549)Serhiy Storchaka2017-03-191-0/+7
* bpo-29676: fix lsprof can't profile C method call. (GH523)INADA Naoki2017-03-071-1/+14
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-031-3/+3
* bpo-29655: Fixed possible reference leaks in `import *`. (#301)Matthias Bussonnier2017-02-261-1/+4
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...Martijn Pieters2017-02-231-3/+9
* bpo-29546: Improve from-import error message with location (#103)Matthias Bussonnier2017-02-221-4/+21
* bpo-29546: Set 'path' on ImportError for ``from ... import ...`` (GH-91)Matthias Bussonnier2017-02-151-2/+10
* bpo-29524: Add Objects/call.c file (#12)Victor Stinner2017-02-121-239/+3
* Backed out changeset f23fa1f7b68fVictor Stinner2017-02-101-3/+239
* Issue #29465: Add Objects/call.c fileVictor Stinner2017-02-101-239/+3
* Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-021-6/+6
* Document that _PyFunction_FastCallDict() must copy kwargsVictor Stinner2017-02-011-0/+2
* Rephrase !PyErr_Occurred() comment: may=>canVictor Stinner2017-01-181-2/+2
* Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode.INADA Naoki2017-01-161-40/+32
* _PyEval_EvalCodeWithName(): remove redundant checkVictor Stinner2017-01-111-1/+2
* Inline call_function()Victor Stinner2017-01-101-2/+4
* Optimize _PyFunction_FastCallDict() when kwargs is {}Victor Stinner2017-01-031-3/+5
* Issue #29049: Remove unnecessary Py_DECREFINADA Naoki2016-12-261-1/+1
* Issue #29049: Fix refleak introduced by f5eb0c4f5d37.INADA Naoki2016-12-261-1/+4
* Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function.INADA Naoki2016-12-241-10/+21
* Issue #18896: Python function can now have more than 255 parameters.Serhiy Storchaka2016-12-161-1/+1
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-2/+2
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-141-0/+97
* Backed out changeset 99c34e47348bVictor Stinner2016-12-091-2/+2
* Inline PyEval_EvalFrameEx() in callersVictor Stinner2016-12-091-2/+2
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-2/+2
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-2/+2
* Uniformize argument names of "call" functionsVictor Stinner2016-12-061-3/+4
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-3/+3
* WITH_CLEANUP_START uses fastcallVictor Stinner2016-12-011-3/+10
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-3/+3
* call_function(): document PyMethod optimizationVictor Stinner2016-11-281-1/+5
* Remove CALL_PROFILE special buildVictor Stinner2016-11-281-91/+0
* Merge 3.6Victor Stinner2016-11-241-0/+1
|\
| * Fix _PyGen_yf()Victor Stinner2016-11-241-0/+1
* | mergeRaymond Hettinger2016-11-221-1/+3
|\ \ | |/
| * Issue #27100: Fix ref leakRaymond Hettinger2016-11-221-1/+3
* | mergeRaymond Hettinger2016-11-221-4/+4
|\ \ | |/
| * Issue #27100: With statement reports missing __enter__ before __exit__. (Co...Raymond Hettinger2016-11-221-4/+4
* | Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-5/+5
* | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
|\ \ | |/