8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80b25d commit a778704Copy full SHA for a778704
stdlib/2/typing.pyi
@@ -30,6 +30,8 @@ List = TypeAlias(object)
30
Dict = TypeAlias(object)
31
DefaultDict = TypeAlias(object)
32
Set = TypeAlias(object)
33
+Counter = TypeAlias(object)
34
+Deque = TypeAlias(object)
35
36
# Predefined type variables.
37
AnyStr = TypeVar('AnyStr', str, unicode)
stdlib/3/typing.pyi
@@ -32,6 +32,10 @@ List = TypeAlias(object)
+if sys.version_info >= (3, 3):
38
+ ChainMap = TypeAlias(object)
39
40
41
AnyStr = TypeVar('AnyStr', str, bytes)
0 commit comments