mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-45923: Handle call events in bytecode (GH-30364)
* Add a RESUME instruction to handle "call" events.
This commit is contained in:
parent
3e43fac250
commit
e028ae99ec
13 changed files with 672 additions and 523 deletions
|
|
@ -1268,7 +1268,9 @@ static PYC_MAGIC magic_values[] = {
|
|||
{ 3400, 3419, L"3.8" },
|
||||
{ 3420, 3429, L"3.9" },
|
||||
{ 3430, 3449, L"3.10" },
|
||||
{ 3450, 3469, L"3.11" },
|
||||
/* Allow 50 magic numbers per version from here on */
|
||||
{ 3450, 3499, L"3.11" },
|
||||
{ 3500, 3549, L"3.12" },
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue