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
*
[3.12] gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)...
Serhiy Storchaka
2023-12-14
1
-9/+5
*
[3.12] gh-110237: Check `PyList_Append` for errors in `_PyEval_MatchClass` (G...
Miss Islington (bot)
2023-10-08
1
-3/+11
*
[3.12] GH-108390: Prevent non-local events being set with `sys.monitoring.set...
Mark Shannon
2023-09-05
1
-15/+17
*
[3.12] GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107...
Miss Islington (bot)
2023-08-11
1
-1/+1
*
[3.12] GH-107263: Increase C stack limit for most functions, except `_PyEval_...
Miss Islington (bot)
2023-08-04
1
-1/+7
*
[3.12] GH-106898: Add the exception as an argument to the `PY_UNWIND` event c...
Mark Shannon
2023-07-28
1
-1/+1
*
[3.12] GH-106895: Raise a `ValueError` when attempting to disable events that...
Mark Shannon
2023-07-28
1
-5/+8
*
[3.12] GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291) (GH-10...
Mark Shannon
2023-07-28
1
-1/+13
*
[3.12] GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#1070...
Victor Stinner
2023-07-22
1
-1/+1
*
[3.12] gh-105340: include hidden fast-locals in locals() (GH-105715) (#106470)
Miss Islington (bot)
2023-07-05
1
-0/+13
*
[3.12] gh-104812: Run Pending Calls in any Thread (gh-104813) (gh-105752)
Eric Snow
2023-06-14
1
-0/+55
*
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
*
gh-98831: Modernize CALL and family (#101508)
Guido van Rossum
2023-02-08
1
-6/+0
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
1
-7/+5
*
gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...
Matthieu Dartiailh
2023-02-07
1
-3/+0
*
Fix some comments in ceval.c and fix lltrace output (#101297)
Guido van Rossum
2023-01-24
1
-6/+4
*
gh-98831: rewrite CHECK_EG_MATCH opcode in the instruction definition DSL (#1...
Irit Katriel
2023-01-24
1
-1/+1
*
GH-98831: Move assorted macros from ceval.h to a new header (#101116)
Guido van Rossum
2023-01-18
1
-348/+1
*
GH-100892: consolidate `HEAD_LOCK/HEAD_UNLOCK` macros (#100953)
Kumar Aditya
2023-01-15
1
-5/+0
*
GH-100126: Skip incomplete frames in more places (GH-100613)
Brandt Bucher
2023-01-09
1
-7/+4
*
gh-100758: Refactor initialisation of frame headers into a single function (_...
Irit Katriel
2023-01-06
1
-4/+1
*
GH-99005: Add `CALL_INTRINSIC_1` instruction (GH-100771)
Mark Shannon
2023-01-05
1
-90/+1
*
GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)
Mark Shannon
2023-01-04
1
-1/+1
*
GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...
Mark Shannon
2022-12-14
1
-2/+2
*
GH-99729: Unlink frames before clearing them (GH-100030)
Brandt Bucher
2022-12-06
1
-9/+4
*
gh-88226: Emit TARGET labels in Python/ceval.c when debugging, even if comput...
Skip Montanaro
2022-11-22
1
-4/+21
*
Add a macro for "inlining" new frames (GH-99490)
Brandt Bucher
2022-11-17
1
-0/+10
*
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Mark Shannon
2022-11-10
1
-39/+41
*
gh-99300: Use Py_NewRef() in Python/ceval.c (#99318)
Victor Stinner
2022-11-10
1
-16/+8
*
GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)
Brandt Bucher
2022-11-09
1
-34/+64
*
GH-98831: Simple input-output stack effects for bytecodes.c (#99120)
Guido van Rossum
2022-11-08
1
-0/+9
*
GH-96793: Specialize FOR_ITER for generators. (GH-98772)
Mark Shannon
2022-11-07
1
-3/+36
*
GH-98686: Fix compiler warning for HAS_ARG (GH-99106)
Brandt Bucher
2022-11-04
1
-1/+1
[next]