summaryrefslogtreecommitdiff
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Miss Islington (bot)2018-12-111-0/+14
* [3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)...Serhiy Storchaka2018-12-111-1/+1
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-081-2/+2
* [3.6] bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WIT...Serhiy Storchaka2018-07-091-4/+11
* [3.6] bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) (GH-6400)Miss Islington (bot)2018-04-061-1/+1
* bpo-29922: Improve error messages in 'async with' (GH-6352)Miss Islington (bot)2018-04-041-0/+25
* [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name...Serhiy Storchaka2017-09-271-0/+4
* [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-...Victor Stinner2017-09-121-1/+3
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-081-7/+10
* [3.6] bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyE...Zackery Spytz2017-09-081-2/+3
* [3.6] bpo-31071: Avoid masking original TypeError in call with * unpacking (G...Serhiy Storchaka2017-08-031-29/+34
* [3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (#2583)Masayuki Yamamoto2017-07-051-1/+1
* [3.6] bpo-30703: Improve signal delivery (GH-2415) (#2527)Antoine Pitrou2017-07-011-21/+54
* [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashe...Dino Viehland2017-06-121-4/+4
* [3.6] bpo-30039: Don't run signal handlers while resuming a yield from stack ...Yury Selivanov2017-06-091-3/+14
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529)Xiang Zhang2017-05-101-1/+1
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-301-5/+21
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-021-3/+3
* bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords. (GH-378)INADA Naoki2017-03-011-6/+7
* bpo-29655: Fixed possible reference leaks in `import *`. (#301) (#348)Berker Peksag2017-02-271-1/+4
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...Martijn Pieters2017-02-271-3/+9
* 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