Skip to content
Draft
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 stdlib/typing_extensions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ from typing import ( # noqa: Y022,Y037,Y038,Y039,UP035
Tuple as Tuple,
Type as Type,
TypeAlias as TypeAlias,
TypedDict as TypedDict,
TypeGuard as TypeGuard,
TypeVar as _TypeVar,
Union as Union,
Expand Down Expand Up @@ -233,6 +232,8 @@ Literal: _SpecialForm

def IntVar(name: str) -> Any: ... # returns a new TypeVar

TypedDict: _SpecialForm

# Internal mypy fallback type for all typed dicts (does not exist at runtime)
# N.B. Keep this mostly in sync with typing._TypedDict/mypy_extensions._TypedDict
@type_check_only
Expand Down
Loading