Searched refs:T_co (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Doc/library/ |
D | typing.rst | 1466 .. class:: FrozenSet(frozenset, AbstractSet[T_co]) 1586 .. class:: AbstractSet(Sized, Collection[T_co]) 1608 .. class:: Collection(Sized, Iterable[T_co], Container[T_co]) 1618 .. class:: Container(Generic[T_co]) 1654 .. class:: MappingView(Sized, Iterable[T_co]) 1686 .. class:: Sequence(Reversible[T_co], Collection[T_co]) 1705 .. class:: Iterable(Generic[T_co]) 1713 .. class:: Iterator(Iterable[T_co]) 1721 .. class:: Generator(Iterator[T_co], Generic[T_co, T_contra, V_co]) 1760 .. class:: Reversible(Iterable[T_co]) [all …]
|
/third_party/python/Lib/ |
D | typing.py | 2056 T_co = TypeVar('T_co', covariant=True) # Any type covariant containers. variable 2206 class SupportsAbs(Protocol[T_co]): 2211 def __abs__(self) -> T_co: 2216 class SupportsRound(Protocol[T_co]): 2221 def __round__(self, ndigits: int = 0) -> T_co:
|
/third_party/python/Lib/test/ |
D | test_typing.py | 210 T_co = TypeVar('T_co', covariant=True) 211 self.assertEqual(repr(T_co), '+T_co')
|