Thanks to visit codestin.com Credit goes to github.com
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 c8e7d98 commit 4697adcCopy full SHA for 4697adc
1 file changed
stdlib/3/typing.pyi
@@ -56,6 +56,9 @@ Counter = TypeAlias(object)
56
Deque = TypeAlias(object)
57
ChainMap = TypeAlias(object)
58
59
+if sys.version_info >= (3, 7):
60
+ OrderedDict = TypeAlias(object)
61
+
62
# Predefined type variables.
63
AnyStr = TypeVar('AnyStr', str, bytes)
64
0 commit comments