summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)Pablo Galindo2021-06-211-0/+3
* bpo-44337: Improve LOAD_ATTR specialization (GH-26759)Mark Shannon2021-06-211-0/+2
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-11/+12
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-20/+4
* Remove accidentally duplicated STAT_INC (GH-26718)Mark Shannon2021-06-141-1/+0
* bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)Mark Shannon2021-06-141-231/+83
* bpo-44348: Move trace-info to thread-state (GH-26623)Mark Shannon2021-06-101-83/+63
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-101-184/+164
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-21/+28
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-28/+21
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-21/+28
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-46/+32
* bpo-44187: Quickening infrastructure (GH-26264)Mark Shannon2021-06-071-6/+22
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-32/+46
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-041-25/+13
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-27/+25
* bpo-17792: more accurate error message for unbound variable access exceptions...Irit Katriel2021-06-021-3/+3
* bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow2021-05-261-9/+8
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-211-81/+114
* Remove unused function in ceval.c (GH-26246)Pablo Galindo2021-05-191-9/+0
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-151-26/+42
* Remove PyTryblock struct (GH-26059)Mark Shannon2021-05-121-26/+17
* Prevent access outside buffer (GH-26012)Dennis Sweeney2021-05-101-3/+5
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-140/+231
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-021-0/+8
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-301-64/+8
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-141-0/+14
* bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)Mark Shannon2021-04-131-23/+32
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-17/+16
* bpo-43760: Streamline dispatch sequence for machines without computed gotos. ...Mark Shannon2021-04-081-61/+52
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-061-0/+24
* bpo-42128: __match_args__ can't be a list anymore (GH-25203)Brandt Bucher2021-04-061-8/+1
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-17/+12
* Move big block of macros out of function to improve readability. (GH-25020)Mark Shannon2021-03-251-38/+40
* Only check evalbreaker after calls and on backwards egdes. Makes sure that __...Mark Shannon2021-03-241-46/+37
* bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)Victor Stinner2021-03-181-4/+2
* Make tracing info (bounds, and previous instruction offset) a bit more robust...Mark Shannon2021-03-051-52/+72
* bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739)db3l2021-03-041-0/+1
* bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...Pablo Galindo2021-02-281-10/+12
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-0/+382
* bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)Victor Stinner2021-02-211-5/+16
* bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner2021-02-201-12/+16
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-191-16/+15
* bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579)Victor Stinner2021-02-191-1/+1
* bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)Victor Stinner2021-02-191-2/+2
* bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)Victor Stinner2021-02-181-3/+3
* bpo-43152: Update assert statement to remove unused warning (GH-24473)Dong-hee Na2021-02-141-2/+1
* bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)Mark Shannon2021-02-011-123/+200
* bpo-42927: Inline cache for attributes defined with '__slots__' (#24216)Guido van Rossum2021-01-301-64/+116
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-291-62/+68