mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
[opcode] Remove concrete values from unstable opcode constants (#15447)
This commit is contained in:
+2
-2
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user