mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)
This commit is contained in:
parent
3690688149
commit
81e3aa835c
13 changed files with 107 additions and 73 deletions
|
@ -127,7 +127,6 @@ def_op('RETURN_VALUE', 83)
|
|||
|
||||
def_op('SETUP_ANNOTATIONS', 85)
|
||||
|
||||
def_op('PREP_RERAISE_STAR', 88)
|
||||
def_op('POP_EXCEPT', 89)
|
||||
|
||||
HAVE_ARGUMENT = 90 # real opcodes from here have an argument:
|
||||
|
@ -224,6 +223,7 @@ def_op('CALL', 171)
|
|||
def_op('KW_NAMES', 172)
|
||||
hasconst.append(172)
|
||||
def_op('CALL_INTRINSIC_1', 173)
|
||||
def_op('CALL_INTRINSIC_2', 174)
|
||||
|
||||
hasarg.extend([op for op in opmap.values() if op >= HAVE_ARGUMENT])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue