Skip to content

Commit b6b8554

Browse files
committed
Add stub version of Type[C] (#216)
1 parent 25f5c9c commit b6b8554

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

stdlib/2.7/typing.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ TypeVar = object()
1212
Generic = object()
1313
Tuple = object()
1414
Callable = object()
15+
Type = object()
1516
builtinclass = object()
1617
_promote = object()
1718
NamedTuple = object()

stdlib/3/typing.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ TypeVar = object()
1212
Generic = object()
1313
Tuple = object()
1414
Callable = object()
15+
Type = object()
1516
builtinclass = object()
1617
_promote = object()
1718
NamedTuple = object()

0 commit comments

Comments
 (0)