summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon2022-01-061-44/+73
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-061-0/+24
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-8/+5
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-8/+0
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-25/+0
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-132/+1
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-23/+8
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-158/+54
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-2/+2
* bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...Mark Shannon2021-12-151-0/+35
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-151-10/+11
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-141-58/+158
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-8/+347
* bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon2021-12-081-18/+2
* bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)Eric Snow2021-12-071-1/+1
* bpo-46008: Return void from _PyEval_InitState(). (gh-29970)Eric Snow2021-12-071-8/+3
* Fix leak when an exception is raised during generator creation. (GH-29960)Mark Shannon2021-12-071-20/+7
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-13/+11
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-30/+11
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+122
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-139/+194
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-301-6/+3
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-7/+5
* bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...Irit Katriel2021-11-251-4/+14
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-46/+66
* bpo-45871: Refactor except matcher validation into a separate function so tha...Irit Katriel2021-11-221-23/+33
* bpo-45709: Fix tracing when exception is handled. (GH-29638)Mark Shannon2021-11-191-4/+1
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-191-5/+80
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-181-23/+38
* bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na2021-11-181-0/+35
* bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher2021-11-161-83/+34
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-161-17/+24
* bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher2021-11-151-8/+0
* bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel2021-11-121-0/+25
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-453/+151
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-101-4/+1
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-281-57/+84
* bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)Ken Jin2021-10-281-0/+6
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-281-23/+24
* Don't make a call at the C level when calling bound-methods from Python code....Mark Shannon2021-10-271-1/+14
* bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher2021-10-271-44/+24
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-201-46/+7
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-201-3/+42
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-191-0/+147
* Record cache hits for BINARY_SUBSCR specializations (GH-29060)Ken Jin2021-10-191-0/+3
* bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)Victor Stinner2021-10-181-7/+7
* bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon2021-10-181-153/+97
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-151-10/+7
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-141-1/+61
* Ensure that instruction cases are self-contained (GH-28938)Brandt Bucher2021-10-131-6/+6