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
*
GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)
Brandt Bucher
2022-08-19
1
-0/+23
*
GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)
Ken Jin
2022-08-17
1
-2/+41
*
Update _PyEval_AddPendingCall comment (#95817)
zhanpon
2022-08-11
1
-2/+2
*
GH-95245: Store object values and dict pointers in single tagged pointer. (GH...
Mark Shannon
2022-08-01
1
-9/+14
*
GH-90081: Run python tracers at full speed (GH-95328)
Mark Shannon
2022-07-28
1
-4/+7
*
GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)
Brandt Bucher
2022-07-22
1
-0/+8
*
GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...
Mark Shannon
2022-07-18
1
-14/+0
*
GH-93252: Fix error handling for failed Python calls (GH-94693)
Brandt Bucher
2022-07-09
1
-1/+5
*
gh-94215: Fix error handling for line-tracing events (GH-94681)
Brandt Bucher
2022-07-08
1
-5/+14
*
gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace (GH-94...
Pablo Galindo Salgado
2022-07-05
1
-2/+24
*
gh-91719: Reload opcode on unknown error so that C can optimize the dispatchi...
neonene
2022-06-30
1
-0/+3
*
GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)
Mark Shannon
2022-06-27
1
-0/+41
*
GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....
Mark Shannon
2022-06-21
1
-3/+3
*
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney
2022-06-21
1
-12/+62
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
1
-7/+9
*
GH-93897: Store frame size in code object and de-opt if insufficient space on...
Mark Shannon
2022-06-20
1
-24/+14
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
1
-1/+0
*
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin
2022-06-17
1
-4/+42
*
gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)
Victor Stinner
2022-06-17
1
-3/+3
*
Fix BINARY_SUBSCR_GETITEM stats (GH-93903)
Ken Jin
2022-06-16
1
-6/+5
*
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin
2022-06-14
1
-136/+104
*
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Mark Shannon
2022-06-14
1
-52/+37
*
Fix MSVC compiler warnings in ceval.c (#93569)
Ken Jin
2022-06-07
1
-2/+2
*
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon
2022-06-07
1
-7/+4
*
gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...
Dennis Sweeney
2022-05-31
1
-16/+14
*
GH-93354: Use exponential backoff to avoid excessive specialization attempts....
Mark Shannon
2022-05-31
1
-21/+25
*
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
Eric Snow
2022-05-27
1
-55/+0
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-1/+4
*
gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)
Ken Jin
2022-05-25
1
-0/+23
*
gh-91924: Fix __lltrace__ for non-UTF-8 stdout encoding (#93199)
Victor Stinner
2022-05-25
1
-1/+3
*
GH-89914: Make the oparg of the YIELD_VALUE instruction equal the stack depth...
Mark Shannon
2022-05-19
1
-0/+1
*
GH-90690: Remove `PRECALL` instruction (GH-92925)
Mark Shannon
2022-05-19
1
-170/+101
*
Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)
Mark Shannon
2022-05-18
1
-0/+2
*
Improve object stats (#92845)
Mark Shannon
2022-05-16
1
-0/+2
*
GH-92236: Remove spurious "line" event when starting coroutine or generator. ...
Mark Shannon
2022-05-13
1
-0/+6
*
Update outdated `LOAD_METHOD` comments in `Python/ceval.c` (GH-92641)
Crowthebird
2022-05-12
1
-2/+2
*
GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...
Mark Shannon
2022-05-04
1
-0/+2
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-15/+15
*
gh-92063: Enforce types in specialized PRECALL opcodes (GH-92068)
Dennis Sweeney
2022-04-30
1
-16/+27
*
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
Dennis Sweeney
2022-04-28
1
-0/+9
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
1
-0/+1
*
gh-89279: In ceval.c, redefine some macros for speed (#32387)
Guido van Rossum
2022-04-22
1
-13/+60
*
GH-91719: Make MSVC generate somewhat faster switch code (#91718)
Guido van Rossum
2022-04-21
1
-2/+4
*
Cast to (destructor) to fix compiler warnings (GH-91711)
Dennis Sweeney
2022-04-20
1
-11/+11
*
gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)
Dennis Sweeney
2022-04-19
1
-40/+44
*
gh-91625: Don't ignore extended args of adaptive opcodes (GH-91626)
Dennis Sweeney
2022-04-17
1
-16/+21
*
gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)
Dennis Sweeney
2022-04-16
1
-1/+1
*
gh-91462: Make lltrace output human-readable. (GH-91463)
Dennis Sweeney
2022-04-16
1
-35/+83
*
gh-91276: Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative (GH-32215)
Irit Katriel
2022-04-15
1
-4/+4
*
gh-90699: Use _Py_STR(empty) instead of PyUnicode_New(0, 0) for BUILD_STRING ...
Dennis Sweeney
2022-04-15
1
-6/+2
[next]