Skip to content
Closed
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
3 changes: 2 additions & 1 deletion third_party/2and3/typing_extensions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from typing import overload as overload
from typing import Text as Text
from typing import Type as Type
from typing import TYPE_CHECKING as TYPE_CHECKING
from typing import TypeVar, Any, Mapping, ItemsView, KeysView, ValuesView, Dict, Type
from typing import TypeVar, Any, Mapping, ItemsView, KeysView, ValuesView, Dict, Type, List

_T = TypeVar('_T')
_F = TypeVar('_F', bound=Callable[..., Any])
Expand All @@ -25,6 +25,7 @@ Final: _SpecialForm = ...
def final(f: _F) -> _F: ...
Literal: _SpecialForm = ...
def IntVar(__name: str) -> Type: ...
def CallableParametersVariable(__name: str) -> List[Type]: ...

# Internal mypy fallback type for all typed dicts (does not exist at runtime)
class _TypedDict(Mapping[str, object], metaclass=abc.ABCMeta):
Expand Down