summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #27358: Merge from 3.6Berker Peksag2016-10-021-1/+1
|\
| * Issue #27358: Fix typo in error messageBerker Peksag2016-10-021-1/+1
* | Issue #27358: Optimized merging var-keyword arguments and improved errorSerhiy Storchaka2016-10-021-44/+54
|\ \ | |/
| * Issue #27358: Optimized merging var-keyword arguments and improved errorSerhiy Storchaka2016-10-021-44/+54
* | Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-1/+12
|\ \ | |/
| * Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-1/+12
* | Issue #27703: Got rid of unnecessary NULL checks in do_raise() in release mode.Serhiy Storchaka2016-09-271-2/+5
|/
* Issue #28086: Single var-positional argument of tuple subtype was passedSerhiy Storchaka2016-09-221-2/+2
* Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-121-0/+5
* Issue #27213: Fix reference leaksVictor Stinner2016-09-121-0/+2
* Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-111-84/+57
* Issue #27129: Replaced wordcode related magic constants with macros.Serhiy Storchaka2016-09-111-27/+21
* DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-101-2/+76
* remove more READ_TIMESTAMPBenjamin Peterson2016-09-091-12/+0
* remove READ_TIMESTAMP macroBenjamin Peterson2016-09-091-3/+0
* remove ceval timestamp supportBenjamin Peterson2016-09-091-153/+1
* Issue #27810: Add _PyCFunction_FastCallKeywords()Victor Stinner2016-09-091-136/+28
* Add _PyObject_FastCallKeywords()Victor Stinner2016-09-091-53/+36
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-287/+205
* ceval: tighten the code of STORE_ANNOTATIONYury Selivanov2016-09-091-2/+1
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-29/+83
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-0/+112
* MergeRaymond Hettinger2016-09-081-2/+4
* Add the co_extra field and accompanying APIs to code objects.Brett Cannon2016-09-071-0/+14
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-0/+18
* Implement the frame evaluation API aspect of PEP 523.Brett Cannon2016-09-051-0/+7
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-6/+6
* Issue #27830: Revert, remove _PyFunction_FastCallKeywords()Victor Stinner2016-08-251-6/+6
* Add _PyObject_FastCallKeywords()Victor Stinner2016-08-241-9/+14
* Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-241-83/+114
* PyEval_CallObjectWithKeywords() doesn't inc/decrefVictor Stinner2016-08-221-7/+1
* PyEval_CallObjectWithKeywords() uses fast call with kwargsVictor Stinner2016-08-221-12/+4
* Issue #27809: Cleanup _PyEval_EvalCodeWithName()Victor Stinner2016-08-221-15/+13
* _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-221-9/+41
* Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-2/+2
* Optimize call to Python function without argumentVictor Stinner2016-08-221-11/+31
* import_name() now uses fast callVictor Stinner2016-08-191-13/+9
* Fix PyObject_Call() parameter namesVictor Stinner2016-08-191-12/+13
* PyEval_CallObjectWithKeywords() uses fast callVictor Stinner2016-08-191-0/+4
* Add _PyObject_FastCall()Victor Stinner2016-08-191-46/+113
* Merge 3.5 (fix raise)Victor Stinner2016-08-181-1/+1
|\
| * Fix SystemError in "raise" statementVictor Stinner2016-08-181-1/+1
* | Use Py_ssize_t in _PyEval_EvalCodeWithName()Victor Stinner2016-08-161-8/+10
* | Issue #27128: Cleanup _PyEval_EvalCodeWithName()Victor Stinner2016-08-161-11/+43
* | Issue #22557: Now importing already imported modules is up to 2.5 times faster.Serhiy Storchaka2016-08-021-28/+51
* | Issue #16191: Merge comment fixes from 3.5Martin Panter2016-07-181-6/+6
|\ \ | |/
| * Issue #16191: Fix up references to renamed variablesMartin Panter2016-07-181-6/+6
* | Issue #27352: Correct the validation of the ImportFrom AST node and simplifySerhiy Storchaka2016-06-271-9/+1
* | Issue #27255: Added more predictions in ceval.c.Serhiy Storchaka2016-06-271-2/+12
* | Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-121-102/+22