Skip to content

Commit 0783075

Browse files
[opcode] Remove concrete values from unstable opcode constants (#15447)
1 parent a3d6947 commit 0783075

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/opcode.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if sys.version_info >= (3, 13):
4141
opname: Final[list[str]]
4242

4343
opmap: Final[dict[str, int]]
44-
HAVE_ARGUMENT: Final = 43
45-
EXTENDED_ARG: Final = 69
44+
HAVE_ARGUMENT: Final[int]
45+
EXTENDED_ARG: Final[int]
4646

4747
def stack_effect(opcode: int, oparg: int | None = None, /, *, jump: bool | None = None) -> int: ...

0 commit comments

Comments
 (0)