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-44645: Check for interrupts on any potentially backwards edge (GH-27216)
Mark Shannon
2021-07-19
1
-1/+6
*
Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...
Pablo Galindo Salgado
2021-07-16
1
-6/+1
*
bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)
Mark Shannon
2021-07-16
1
-1/+6
*
Remove sys._deactivate_opcache() now that is not needed (GH-27154)
Pablo Galindo Salgado
2021-07-15
1
-13/+0
*
bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)
Irit Katriel
2021-07-15
1
-0/+116
*
bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)
Mark Shannon
2021-07-08
1
-4/+2
*
bpo-44581: Don't execute quickened instructions if tracing is on (GH-27064)
Mark Shannon
2021-07-08
1
-1/+9
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
1
-3/+1
*
bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...
Serhiy Storchaka
2021-06-29
1
-18/+30
*
bpo-44486: Make sure that modules always have a dictionary. (GH-26847)
Mark Shannon
2021-06-23
1
-0/+1
*
bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)
Pablo Galindo
2021-06-21
1
-0/+3
*
bpo-44337: Improve LOAD_ATTR specialization (GH-26759)
Mark Shannon
2021-06-21
1
-0/+2
*
bpo-44032: Move pointer to code object from frame-object to frame specials ar...
Mark Shannon
2021-06-18
1
-11/+12
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
1
-20/+4
*
Remove accidentally duplicated STAT_INC (GH-26718)
Mark Shannon
2021-06-14
1
-1/+0
*
bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)
Mark Shannon
2021-06-14
1
-231/+83
*
bpo-44348: Move trace-info to thread-state (GH-26623)
Mark Shannon
2021-06-10
1
-83/+63
*
bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)
Mark Shannon
2021-06-10
1
-184/+164
*
bpo-43693: Un-revert commit f3fa63e. (#26609)
Eric Snow
2021-06-08
1
-21/+28
*
Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...
Pablo Galindo
2021-06-08
1
-28/+21
*
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...
Eric Snow
2021-06-07
1
-21/+28
*
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow
2021-06-07
1
-46/+32
*
bpo-44187: Quickening infrastructure (GH-26264)
Mark Shannon
2021-06-07
1
-6/+22
*
bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...
Pablo Galindo
2021-06-04
1
-32/+46
*
bpo-43693: Compute deref offsets in compiler (gh-25152)
Mark Shannon
2021-06-04
1
-25/+13
*
bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...
Eric Snow
2021-06-03
1
-27/+25
*
bpo-17792: more accurate error message for unbound variable access exceptions...
Irit Katriel
2021-06-02
1
-3/+3
*
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow
2021-05-26
1
-9/+8
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-81/+114
*
Remove unused function in ceval.c (GH-26246)
Pablo Galindo
2021-05-19
1
-9/+0
*
bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...
Ken Jin
2021-05-15
1
-26/+42
*
Remove PyTryblock struct (GH-26059)
Mark Shannon
2021-05-12
1
-26/+17
*
Prevent access outside buffer (GH-26012)
Dennis Sweeney
2021-05-10
1
-3/+5
*
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon
2021-05-07
1
-140/+231
*
bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)
Brandt Bucher
2021-05-02
1
-0/+8
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-64/+8
*
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo
2021-04-14
1
-0/+14
*
bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)
Mark Shannon
2021-04-13
1
-23/+32
*
bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)
Victor Stinner
2021-04-10
1
-17/+16
*
bpo-43760: Streamline dispatch sequence for machines without computed gotos. ...
Mark Shannon
2021-04-08
1
-61/+52
*
bpo-43683: Handle generator entry in bytecode (GH-25138)
Mark Shannon
2021-04-06
1
-0/+24
*
bpo-42128: __match_args__ can't be a list anymore (GH-25203)
Brandt Bucher
2021-04-06
1
-8/+1
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
1
-17/+12
*
Move big block of macros out of function to improve readability. (GH-25020)
Mark Shannon
2021-03-25
1
-38/+40
*
Only check evalbreaker after calls and on backwards egdes. Makes sure that __...
Mark Shannon
2021-03-24
1
-46/+37
*
bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)
Victor Stinner
2021-03-18
1
-4/+2
*
Make tracing info (bounds, and previous instruction offset) a bit more robust...
Mark Shannon
2021-03-05
1
-52/+72
*
bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739)
db3l
2021-03-04
1
-0/+1
*
bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...
Pablo Galindo
2021-02-28
1
-10/+12
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-0/+382
[next]