summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-39/+0
* bpo-36710: Add tstate parameter in ceval.c (GH-13547)Victor Stinner2019-05-241-346/+386
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+23
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-2/+1
* bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)Victor Stinner2019-05-101-165/+204
* bpo-36851: Clean the frame stack if the execution ends with a return and the ...Pablo Galindo2019-05-091-7/+9
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-4/+6
* bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)Victor Stinner2019-05-041-1/+0
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-18/+100
* Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006)Victor Stinner2019-04-291-11/+5
* bpo-36356: Destroy the GIL at exit (GH-12453)Victor Stinner2019-04-291-5/+11
* bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ...Joannah Nanjekye2019-04-291-12/+16
* Fix typo in 'tandem' word (GH-12998) (GH-12998)Andrey2019-04-291-1/+1
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-171-0/+4
* bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...Eric Snow2019-04-121-78/+64
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...Eric Snow2019-04-121-64/+78
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Stefan Krah2019-03-251-3/+3
* bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432)Victor Stinner2019-03-191-2/+11
* bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246)Eric Snow2019-03-151-21/+61
* bpo-33608: Fix PyEval_InitThreads() warning (GH-12346)Victor Stinner2019-03-151-1/+1
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-091-39/+10
* bpo-33608: Minor cleanup related to pending calls. (gh-12247)Eric Snow2019-03-091-32/+48
* Simplify DISPATCH by hoisting eval_breaker ahead of time. (gh-12243)Eric Snow2019-03-091-2/+3
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-041-118/+82
* bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...Eric Snow2019-03-011-2/+3
* bpo-36030: Add _PyTuple_FromArray() function (GH-11954)Sergey Fedoseev2019-02-251-6/+1
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-22/+54
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-241-82/+117
* bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...Eric Snow2019-02-231-1/+8
* bpo-12822: use monotonic clock for condvar if possible (GH-11723)Inada Naoki2019-02-201-0/+1
* bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...Serhiy Storchaka2019-01-121-48/+45
* bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)Eric Snow2019-01-111-25/+83
* bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)Serhiy Storchaka2018-12-111-1/+1
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-111-0/+14
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-081-2/+2
* bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)Victor Stinner2018-11-251-0/+1
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)Victor Stinner2018-11-091-1/+1
* bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner2018-11-011-25/+25
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)Victor Stinner2018-10-301-2/+1
* Fix typos in comments (GH-9905)Quan Tian2018-10-191-1/+1
* bpo-31370: Remove references to threadless builds (#8805)Zackery Spytz2018-09-291-5/+1
* bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)jdemeyer2018-09-191-3/+27
* closes bpo-34673: Tweaks to make ceval more editable. (GH-9289)Benjamin Peterson2018-09-171-136/+136
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-031-5/+5
* bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)costypetrisor2018-07-311-17/+27
* bpo-34190: Fix reference leak in call_function() (GH-8413)jdemeyer2018-07-231-5/+8
* bpo-34126: Fix crashes while profiling invalid calls. (GH-8300)jdemeyer2018-07-211-4/+10