mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Update dis.pyi and opcode.pyi for Python3.12 (#10276)
This commit is contained in:
@@ -14,9 +14,12 @@ __all__ = [
|
||||
"opmap",
|
||||
"HAVE_ARGUMENT",
|
||||
"EXTENDED_ARG",
|
||||
"hasnargs",
|
||||
"stack_effect",
|
||||
]
|
||||
if sys.version_info >= (3, 12):
|
||||
__all__ += ["hasarg", "hasexc"]
|
||||
else:
|
||||
__all__ += ["hasnargs"]
|
||||
|
||||
if sys.version_info >= (3, 9):
|
||||
cmp_op: tuple[Literal["<"], Literal["<="], Literal["=="], Literal["!="], Literal[">"], Literal[">="]]
|
||||
@@ -42,6 +45,11 @@ hasjabs: list[int]
|
||||
haslocal: list[int]
|
||||
hascompare: list[int]
|
||||
hasfree: list[int]
|
||||
if sys.version_info >= (3, 12):
|
||||
hasarg: list[int]
|
||||
hasexc: list[int]
|
||||
else:
|
||||
hasnargs: list[int]
|
||||
opname: list[str]
|
||||
|
||||
opmap: dict[str, int]
|
||||
@@ -53,5 +61,3 @@ if sys.version_info >= (3, 8):
|
||||
|
||||
else:
|
||||
def stack_effect(__opcode: int, __oparg: int | None = None) -> int: ...
|
||||
|
||||
hasnargs: list[int]
|
||||
|
||||
Reference in New Issue
Block a user