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-106898: Add the exception as an argument to the `PY_UNWIND` event callback...
Mark Shannon
2023-07-27
1
-1/+1
*
GH-106895: Raise a `ValueError` when attempting to disable events that cannot...
Mark Shannon
2023-07-27
1
-5/+8
*
GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291)
Mark Shannon
2023-07-27
1
-1/+13
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-1/+1
*
GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#107069)
Victor Stinner
2023-07-22
1
-1/+1
*
gh-106320: Move private _PySet API to the internal API (#107041)
Victor Stinner
2023-07-22
1
-3/+4
*
GH-106701: Move _PyUopExecute to Python/executor.c (GH-106924)
Brandt Bucher
2023-07-20
1
-163/+32
*
gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)
Guido van Rossum
2023-07-17
1
-3/+4
*
gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)
Guido van Rossum
2023-07-17
1
-0/+4
*
gh-106701: Move the hand-written Tier 2 uops to bytecodes.c (#106702)
Guido van Rossum
2023-07-13
1
-40/+0
*
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_me...
Irit Katriel
2023-07-12
1
-1/+1
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-3/+3
*
gh-106529: Support JUMP_BACKWARD in Tier 2 (uops) (#106543)
Guido van Rossum
2023-07-11
1
-0/+7
*
gh-106529: Implement POP_JUMP_IF_XXX uops (#106551)
Guido van Rossum
2023-07-10
1
-1/+21
*
gh-106303: Use _PyObject_LookupAttr() instead of PyObject_GetAttr() (GH-106304)
Serhiy Storchaka
2023-07-09
1
-10/+6
*
Delete dead ceval code. (gh-106486)
Benjamin Peterson
2023-07-07
1
-5/+0
*
gh-104584: Fix error handling from backedge optimization (#106484)
Guido van Rossum
2023-07-06
1
-2/+2
*
gh-105340: include hidden fast-locals in locals() (#105715)
Carl Meyer
2023-07-05
1
-0/+13
*
GH-104584: Fix ENTER_EXECUTOR (GH-106141)
Mark Shannon
2023-07-03
1
-69/+1
*
gh-106290: Fix edge cases around uops (#106319)
Guido van Rossum
2023-07-03
1
-31/+31
*
gh-106280: Remove unnecessary unreachable code (gh-106285)
Dong-hee Na
2023-06-30
1
-3/+0
*
gh-106023: Update code using _PyObject_FastCall() (#106257)
Victor Stinner
2023-06-30
1
-15/+12
*
gh-104584: Emit macro expansions to opcode_metadata.h (#106163)
Guido van Rossum
2023-06-28
1
-3/+3
*
gh-104584: Change DEOPT_IF in uops executor (#106146)
Guido van Rossum
2023-06-27
1
-10/+6
*
gh-104584: Baby steps towards generating and executing traces (#105924)
Guido van Rossum
2023-06-27
1
-8/+129
*
GH-91095: Specialize calls to normal Python classes. (GH-99331)
Mark Shannon
2023-06-22
1
-1/+3
*
gh-105481: remove HAS_ARG, HAS_CONST, IS_JUMP_OPCODE, IS_PSEUDO_OPCODE and re...
Irit Katriel
2023-06-17
1
-2/+3
*
GH-77273: Better bytecodes for f-strings (GH-6132)
Mark Shannon
2023-06-14
1
-0/+8
*
GH-100987: Allow objects other than code objects as the "executable" of an in...
Mark Shannon
2023-06-14
1
-15/+22
*
gh-104812: Run Pending Calls in any Thread (gh-104813)
Eric Snow
2023-06-13
1
-0/+55
*
gh-105214: Use named constants for MAKE_FUNCTION oparg (#105215)
Jelle Zijlstra
2023-06-02
1
-0/+1
*
remove unused #includes of pycore_pymem.h (#105166)
Irit Katriel
2023-06-01
1
-1/+0
*
GH-104580: Don't cache eval breaker in interpreter (GH-104581)
Mark Shannon
2023-05-18
1
-1/+0
*
GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...
Mark Shannon
2023-05-12
1
-0/+35
*
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...
Mark Shannon
2023-05-05
1
-1/+2
*
gh-98003: Inline call frames for CALL_FUNCTION_EX (GH-98004)
Ken Jin
2023-04-30
1
-0/+46
*
gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)
Carl Meyer
2023-04-24
1
-0/+1
*
gh-84436: Implement Immortal Objects (gh-19474)
Eddie Elizondo
2023-04-22
1
-2/+8
*
GH-100530: Change the error message for non-class class patterns (GH-103576)
Nikita Sobolev
2023-04-18
1
-1/+1
*
GH-103488: Use return-offset, not yield-offset. (GH-103502)
Mark Shannon
2023-04-13
1
-1/+2
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
1
-537/+98
*
GH-100987: Don't cache references to the names and consts array in `_PyEval_E...
Mark Shannon
2023-03-13
1
-7/+0
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...
Irit Katriel
2023-03-13
1
-23/+19
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-28
1
-33/+16
*
gh-101101: Unstable C API tier (PEP 689) (GH-101102)
Petr Viktorin
2023-02-28
1
-1/+1
*
GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)
Mark Shannon
2023-02-23
1
-37/+36
*
gh-101903: Remove obsolete undefs for previously removed macros Py_EnterRecur...
Owain Davies
2023-02-21
1
-4/+0
*
gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)
Steve Dower
2023-02-20
1
-6/+6
*
gh-101967: add a missing error check (#101968)
Eclips4
2023-02-18
1
-1/+3
*
gh-101758: Clean Up Uses of Import State (gh-101919)
Eric Snow
2023-02-15
1
-1/+1
[next]