summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* gh-105214: Use named constants for MAKE_FUNCTION oparg (#105215)Jelle Zijlstra2023-06-021-0/+1
* remove unused #includes of pycore_pymem.h (#105166)Irit Katriel2023-06-011-1/+0
* GH-104580: Don't cache eval breaker in interpreter (GH-104581)Mark Shannon2023-05-181-1/+0
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-0/+35
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-051-1/+2
* gh-98003: Inline call frames for CALL_FUNCTION_EX (GH-98004)Ken Jin2023-04-301-0/+46
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-241-0/+1
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-2/+8
* GH-100530: Change the error message for non-class class patterns (GH-103576)Nikita Sobolev2023-04-181-1/+1
* GH-103488: Use return-offset, not yield-offset. (GH-103502)Mark Shannon2023-04-131-1/+2
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-537/+98
* GH-100987: Don't cache references to the names and consts array in `_PyEval_E...Mark Shannon2023-03-131-7/+0
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-131-23/+19
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-281-33/+16
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-1/+1
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-37/+36
* gh-101903: Remove obsolete undefs for previously removed macros Py_EnterRecur...Owain Davies2023-02-211-4/+0
* gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)Steve Dower2023-02-201-6/+6
* gh-101967: add a missing error check (#101968)Eclips42023-02-181-1/+3
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-151-1/+1
* gh-98831: Modernize CALL and family (#101508)Guido van Rossum2023-02-081-6/+0
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-7/+5
* gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...Matthieu Dartiailh2023-02-071-3/+0
* Fix some comments in ceval.c and fix lltrace output (#101297)Guido van Rossum2023-01-241-6/+4
* gh-98831: rewrite CHECK_EG_MATCH opcode in the instruction definition DSL (#1...Irit Katriel2023-01-241-1/+1
* GH-98831: Move assorted macros from ceval.h to a new header (#101116)Guido van Rossum2023-01-181-348/+1
* GH-100892: consolidate `HEAD_LOCK/HEAD_UNLOCK` macros (#100953)Kumar Aditya2023-01-151-5/+0
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-091-7/+4
* gh-100758: Refactor initialisation of frame headers into a single function (_...Irit Katriel2023-01-061-4/+1
* GH-99005: Add `CALL_INTRINSIC_1` instruction (GH-100771)Mark Shannon2023-01-051-90/+1
* GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)Mark Shannon2023-01-041-1/+1
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-141-2/+2
* GH-99729: Unlink frames before clearing them (GH-100030)Brandt Bucher2022-12-061-9/+4
* gh-88226: Emit TARGET labels in Python/ceval.c when debugging, even if comput...Skip Montanaro2022-11-221-4/+21
* Add a macro for "inlining" new frames (GH-99490)Brandt Bucher2022-11-171-0/+10
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-39/+41
* gh-99300: Use Py_NewRef() in Python/ceval.c (#99318)Victor Stinner2022-11-101-16/+8
* GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)Brandt Bucher2022-11-091-34/+64
* GH-98831: Simple input-output stack effects for bytecodes.c (#99120)Guido van Rossum2022-11-081-0/+9
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-071-3/+36
* GH-98686: Fix compiler warning for HAS_ARG (GH-99106)Brandt Bucher2022-11-041-1/+1
* GH-98831: "Generate" the interpreter (#98830)Guido van Rossum2022-11-031-3850/+1
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-21/+9
* Rename JUMP_TO_INSTRUCTION to GO_TO_INSTRUCTION (#98934)Guido van Rossum2022-11-011-14/+14
* gh-98879: Remove unreachable error case from COMPARE_OP_STR_JUMP (GH-98882)Dennis Sweeney2022-10-301-3/+0
* gh-98789: Fix FOR_ITER assert on big-endian (GH-98792)Dennis Sweeney2022-10-281-1/+1
* GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)Mark Shannon2022-10-271-3/+13
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-251-2/+2
* gh-98257: Make _PyEval_SetTrace() reentrant (#98258)Victor Stinner2022-10-191-44/+13
* Fix some incorrect indentation around the main switch (#98177)Guido van Rossum2022-10-111-21/+20