Update dis.pyi and opcode.pyi for Python3.12 (#10276)

This commit is contained in:
Nikita Sobolev
2023-06-07 22:33:50 +03:00
committed by GitHub
parent f10b5fb9b6
commit b0a3917145
3 changed files with 13 additions and 12 deletions

View File

@@ -29,9 +29,12 @@ __all__ = [
"opmap",
"HAVE_ARGUMENT",
"EXTENDED_ARG",
"hasnargs",
"stack_effect",
]
if sys.version_info >= (3, 12):
__all__ += ["hasarg", "hasexc"]
else:
__all__ += ["hasnargs"]
# Strictly this should not have to include Callable, but mypy doesn't use FunctionType
# for functions (python/mypy#3171)