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
*
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
*
bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)
Jeroen Demeyer
2019-09-11
1
-1/+1
*
bpo-38090: Fix reference leak in ceval.c (GH-15848)
Pablo Galindo
2019-09-10
1
-1/+0
*
bpo-20490: Improve circular import error message (GH-15308)
Anthony Sottile
2019-09-09
1
-4/+11
*
bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702)
Joannah Nanjekye
2019-09-06
1
-5/+0
*
bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)
Zackery Spytz
2019-08-25
1
-0/+7
*
bpo-37540: vectorcall: keyword names must be strings (GH-14682)
Jeroen Demeyer
2019-08-16
1
-15/+9
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-1/+1
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
1
-4/+4
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557)
Jeroen Demeyer
2019-07-03
1
-5/+3
*
bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...
Jörn Heissler
2019-06-22
1
-2/+2
*
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
Jeroen Demeyer
2019-06-20
1
-4/+4
*
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Jeroen Demeyer
2019-06-14
1
-4/+0
*
bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)
Victor Stinner
2019-06-13
1
-2/+1
*
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
Victor Stinner
2019-06-04
1
-15/+11
*
bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787)
Inada Naoki
2019-06-03
1
-0/+7
*
Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-06-03
1
-205/+130
*
bpo-26219: remove unused code (GH-13775)
Inada Naoki
2019-06-03
1
-3/+0
*
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
Inada Naoki
2019-06-03
1
-1/+142
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...
Eric Snow
2019-06-01
1
-131/+205
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-31/+15
*
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
Eric Snow
2019-06-01
1
-11/+15
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
1
-4/+4
[next]