Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stdlib/pkgutil.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
from _typeshed import SupportsRead
from typing import IO, Any, Callable, Iterable, Iterator, NamedTuple, Optional, Tuple, Union
from typing import IO, Any, Callable, Iterable, Iterator, List, NamedTuple, Optional, Tuple, Union

if sys.version_info >= (3,):
from importlib.abc import Loader, MetaPathFinder, PathEntryFinder
Expand All @@ -18,7 +18,7 @@ if sys.version_info >= (3, 6):
else:
_ModuleInfoLike = Tuple[Union[MetaPathFinder, PathEntryFinder], str, bool]

def extend_path(path: Iterable[str], name: str) -> Iterable[str]: ...
def extend_path(path: List[str], name: str) -> List[str]: ...

class ImpImporter:
def __init__(self, dirname: Optional[str] = ...) -> None: ...
Expand Down