Skip to content
Merged
Show file tree
Hide file tree
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/2/__builtin__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ from typing import (
)
from abc import abstractmethod, ABCMeta
from ast import mod, AST
from types import TracebackType, CodeType, ModuleType
from types import TracebackType, CodeType
import sys

if sys.version_info >= (3,):
Expand Down Expand Up @@ -1455,7 +1455,7 @@ else:
def __import__(name: Text, globals: Optional[Mapping[str, Any]] = ...,
locals: Optional[Mapping[str, Any]] = ...,
fromlist: Sequence[str] = ...,
level: int = ...) -> ModuleType: ...
level: int = ...) -> Any: ...

# Actually the type of Ellipsis is <type 'ellipsis'>, but since it's
# not exposed anywhere under that name, we make it private here.
Expand Down
4 changes: 2 additions & 2 deletions stdlib/2and3/builtins.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ from typing import (
)
from abc import abstractmethod, ABCMeta
from ast import mod, AST
from types import TracebackType, CodeType, ModuleType
from types import TracebackType, CodeType
import sys

if sys.version_info >= (3,):
Expand Down Expand Up @@ -1455,7 +1455,7 @@ else:
def __import__(name: Text, globals: Optional[Mapping[str, Any]] = ...,
locals: Optional[Mapping[str, Any]] = ...,
fromlist: Sequence[str] = ...,
level: int = ...) -> ModuleType: ...
level: int = ...) -> Any: ...

# Actually the type of Ellipsis is <type 'ellipsis'>, but since it's
# not exposed anywhere under that name, we make it private here.
Expand Down