summaryrefslogtreecommitdiff
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Miss Islington (bot)2019-03-251-3/+3
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Serhiy Storchaka2018-12-111-0/+14
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-101-1/+1
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-081-2/+2
* bpo-34190: Fix reference leak in call_function() (GH-8413) (GH-8418)Miss Islington (bot)2018-07-231-5/+8
* bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) (GH-8371)Miss Islington (bot)2018-07-211-4/+10
* bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH...Miss Islington (bot)2018-07-091-4/+11
* [3.7] bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) (GH-6399)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
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-291-55/+0
* bpo-20891: Py_Initialize() now creates the GIL (#4700)Victor Stinner2018-01-291-12/+13
* bpo-32688: Make why the line is commented out clear (GH-5405)Xiang Zhang2018-01-291-1/+1
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-251-12/+10
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-0/+15
* bpo-32259: Make a TypeError message when unpack non-iterable more specific. (...Serhiy Storchaka2017-12-261-2/+10
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-5/+7
* bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)pdox2017-10-251-1/+3
* remove support for splitting the ceval switch into multiple switches (#4099)Benjamin Peterson2017-10-241-10/+0
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-221-105/+20
* Move opcode tracing to occur after the possible update to f_lineno. (GH-3798)George King2017-10-191-4/+4
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-45/+7
* bpo-31492: Fix assertion failures in case of a module with a bad __name__ att...Oren Milman2017-09-191-0/+4
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-151-2/+1
* bpo-31338 (#3374)Barry Warsaw2017-09-141-2/+2
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-131-1/+1
* bpo-31393: Fix the use of PyUnicode_READY(). (#3451)Serhiy Storchaka2017-09-081-7/+10
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-80/+76
* bpo-31344: Per-frame control of trace events (GH-3417)Nick Coghlan2017-09-081-5/+12
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-123/+1
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-91/+99
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-99/+91
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-1/+1
* bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah2017-08-211-1/+3
* bpo-31071: Avoid masking original TypeError in call with * unpacking (#2957)Serhiy Storchaka2017-08-031-29/+34
* Spelling fixes (#2902)Ville Skyttä2017-08-031-1/+1
* bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_Ev...Zackery Spytz2017-07-311-1/+2
* bpo-30854: Fix compile error when --without-threads (#2581)Masayuki Yamamoto2017-07-051-1/+1
* bpo-30703: Improve signal delivery (#2415)Antoine Pitrou2017-06-281-21/+54
* 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-021-3/+3