summaryrefslogtreecommitdiff
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Fix _PyGen_yf()Victor Stinner2016-11-241-0/+1
* Issue #27100: Fix ref leakRaymond Hettinger2016-11-221-1/+3
* Issue #27100: With statement reports missing __enter__ before __exit__. (Co...Raymond Hettinger2016-11-211-4/+4
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* Issue #28665: Harmonize STORE_DEREF with STORE_FAST and LOAD_DEREF giving a 4...Raymond Hettinger2016-11-111-2/+3
* Fixed possible abort in ceval loop if _PyUnicode_FromId() fails.Serhiy Storchaka2016-11-081-2/+2
|\
| * Fixed possible abort in ceval loop if _PyUnicode_FromId() fails.Serhiy Storchaka2016-11-081-1/+1
| * Issue #28257: Improved error message when pass a non-mapping as a var-keywordSerhiy Storchaka2016-10-071-4/+17
| * Silence GCC warning.Serhiy Storchaka2016-09-221-2/+2
| * Issue #26020: Fix evaluation order for set literalsRaymond Hettinger2016-09-081-2/+4
* | Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.Yury Selivanov2016-11-081-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 #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-1/+12
* | 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-121-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-091-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-081-2/+1
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-29/+83
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-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-251-9/+14
* | Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-251-83/+114
* | PyEval_CallObjectWithKeywords() doesn't inc/decrefVictor Stinner2016-08-231-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-201-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-252/+343
|\ \ | |/ |/|
| * Use Py_ssize_t in _PyEval_EvalCodeWithName()Victor Stinner2016-08-161-8/+10
| * Issue #27128: Cleanup _PyEval_EvalCodeWithName()Victor Stinner2016-08-161-11/+43