index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
1
-12/+5
*
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
Victor Stinner
2020-03-20
1
-4/+6
*
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
Victor Stinner
2020-03-20
1
-24/+3
*
bpo-40010: Pass tstate to ceval GIL functions (GH-19077)
Victor Stinner
2020-03-20
1
-124/+190
*
bpo-40010: Optimize signal handling in multithreaded applications (GH-19067)
Victor Stinner
2020-03-19
1
-4/+14
*
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
Victor Stinner
2020-03-19
1
-71/+88
*
bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061)
Victor Stinner
2020-03-18
1
-5/+9
*
bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049)
Victor Stinner
2020-03-18
1
-4/+7
*
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
Victor Stinner
2020-03-18
1
-1/+9
*
bpo-39984: Pass tstate to handle_signals() (GH-19050)
Victor Stinner
2020-03-18
1
-11/+15
*
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
Victor Stinner
2020-03-17
1
-9/+16
*
bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977)
Victor Stinner
2020-03-16
1
-2/+8
*
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
Victor Stinner
2020-03-13
1
-20/+54
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
1
-9/+6
*
bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)
Victor Stinner
2020-03-10
1
-6/+1
*
bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891)
Victor Stinner
2020-03-09
1
-1/+7
*
bpo-39877: Refactor take_gil() function (GH-18885)
Victor Stinner
2020-03-09
1
-65/+13
*
bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884)
Victor Stinner
2020-03-09
1
-8/+22
*
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)
Victor Stinner
2020-03-09
1
-4/+2
*
bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811)
Victor Stinner
2020-03-08
1
-20/+60
*
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner
2020-03-06
1
-6/+6
*
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
Victor Stinner
2020-03-06
1
-1/+2
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-2/+2
*
Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155)
Denis Chernikov
2020-02-21
1
-5/+7
*
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
Andy Lester
2020-02-12
1
-3/+3
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-6/+6
*
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
Victor Stinner
2020-02-07
1
-7/+7
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
1
-2/+1
*
bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279)
Victor Stinner
2020-01-30
1
-10/+4
*
bpo-38960: DTrace build fix for FreeBSD. (GH-17451)
David Carlier
2020-01-28
1
-3/+3
*
bpo-38644: Pass tstate in ceval.c (GH-18222)
Victor Stinner
2020-01-28
1
-6/+6
*
bpo-39320: Handle unpacking of **values in compiler (GH-18141)
Mark Shannon
2020-01-27
1
-36/+19
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
1
-53/+34
*
bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)
Géry Ogam
2020-01-14
1
-9/+10
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
1
-59/+78
*
bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)
Victor Stinner
2020-01-13
1
-2/+2
*
Cleanup exit code for interpreter. (GH-17756)
Mark Shannon
2020-01-13
1
-6/+5
*
bpo-39166: Fix trace of last iteration of async for loops (#17800)
Pablo Galindo
2020-01-10
1
-5/+9
*
bpo-39114: Fix tracing of except handlers with name binding (GH-17769)
Pablo Galindo
2020-01-02
1
-1/+3
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
1
-192/+30
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
1
-12/+16
*
bpo-38644: Add _PyEval_EvalCode() (GH-17183)
Victor Stinner
2019-11-16
1
-4/+24
*
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner
2019-11-14
1
-5/+6
*
bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)
Victor Stinner
2019-11-14
1
-5/+7
*
bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)
Jeroen Demeyer
2019-11-05
1
-19/+30
*
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner
2019-11-05
1
-1/+1
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-04
1
-7/+7
*
bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046)
Victor Stinner
2019-11-04
1
-0/+18
*
bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467)
Brandt Bucher
2019-09-29
1
-0/+2
[next]