[opcode] Remove concrete values from unstable opcode constants (#15447)

This commit is contained in:
Brian Schubert
2026-02-21 13:04:20 -05:00
committed by GitHub
parent a3d69472e2
commit 0783075d6f
+2 -2
View File
@@ -41,7 +41,7 @@ if sys.version_info >= (3, 13):
opname: Final[list[str]]
opmap: Final[dict[str, int]]
HAVE_ARGUMENT: Final = 43
EXTENDED_ARG: Final = 69
HAVE_ARGUMENT: Final[int]
EXTENDED_ARG: Final[int]
def stack_effect(opcode: int, oparg: int | None = None, /, *, jump: bool | None = None) -> int: ...