Various py311 removals (#7836)

This commit is contained in:
Alex Waygood
2022-05-17 01:28:13 +01:00
committed by GitHub
parent 87abd8a39f
commit e9526faf40
7 changed files with 25 additions and 16 deletions

View File

@@ -3,12 +3,13 @@ from collections.abc import Container, Iterable, Iterator, Sequence
from types import CodeType
from typing import IO, Any
LOAD_CONST: int # undocumented
IMPORT_NAME: int # undocumented
STORE_NAME: int # undocumented
STORE_GLOBAL: int # undocumented
STORE_OPS: tuple[int, int] # undocumented
EXTENDED_ARG: int # undocumented
if sys.version_info < (3, 11):
LOAD_CONST: int # undocumented
IMPORT_NAME: int # undocumented
STORE_NAME: int # undocumented
STORE_GLOBAL: int # undocumented
STORE_OPS: tuple[int, int] # undocumented
EXTENDED_ARG: int # undocumented
packagePathMap: dict[str, list[str]] # undocumented