Add sys.orig_argv for Python 3.10 (#5524)

This commit is contained in:
Pavel Karateev
2021-05-24 14:09:15 +03:00
committed by GitHub
parent e7880085a2
commit 781b76769e

View File

@@ -61,6 +61,8 @@ maxsize: int
maxunicode: int
meta_path: List[_MetaPathFinder]
modules: Dict[str, ModuleType]
if sys.version_info >= (3, 10):
orig_argv: List[str]
path: List[str]
path_hooks: List[Any] # TODO precise type; function, path to finder
path_importer_cache: Dict[str, Optional[PathEntryFinder]]