Akuli and srittau: Remove Python 2 branches from Python 3 stubs (#5461)

* run script and do some manual changes (Akuli)

* do the whole thing manually (srittau)

* merge changes (Akuli)

Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
Akuli
2021-05-15 15:33:39 +03:00
committed by GitHub
parent b0ef85288d
commit 17dcea4a68
106 changed files with 1539 additions and 3275 deletions

View File

@@ -11,14 +11,10 @@ class ZipImportError(ImportError): ...
class zipimporter(object):
archive: str
prefix: str
if sys.version_info >= (3, 6):
def __init__(self, path: Union[str, bytes, os.PathLike[Any]]) -> None: ...
else:
def __init__(self, path: Union[str, bytes]) -> None: ...
if sys.version_info >= (3,):
def find_loader(
self, fullname: str, path: Optional[str] = ...
) -> Tuple[Optional[zipimporter], List[str]]: ... # undocumented
def __init__(self, path: Union[str, bytes, os.PathLike[Any]]) -> None: ...
def find_loader(
self, fullname: str, path: Optional[str] = ...
) -> Tuple[Optional[zipimporter], List[str]]: ... # undocumented
def find_module(self, fullname: str, path: Optional[str] = ...) -> Optional[zipimporter]: ...
def get_code(self, fullname: str) -> CodeType: ...
def get_data(self, pathname: str) -> str: ...