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 e4efc71 commit 24e0b82Copy full SHA for 24e0b82
third_party/2and3/typing_extensions.pyi
@@ -16,16 +16,6 @@ if sys.version_info >= (3, 5):
16
if sys.version_info >= (3, 6):
17
from typing import AsyncGenerator
18
19
-if sys.version_info >= (3, 6):
20
- from typing import Collection
21
-else:
22
- _T_co = typing.TypeVar('_T_co', covariant=True)
23
- class Collection(typing.Sized,
24
- typing.Iterable[_T_co],
25
- typing.Container[_T_co],
26
- typing.Generic[_T_co]):
27
- ...
28
-
29
# Return type that indicates a function does not return.
30
# This type is equivalent to the None type, but the no-op Union is necessary to
31
# distinguish the None type from the None value.
0 commit comments