Home
last modified time | relevance | path

Searched refs:FrozenSet (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
Dtest_typing.py1735 self.assertNotEqual(typing.FrozenSet[A[str]],
1736 typing.FrozenSet[mod_generics_cache.B.A[str]])
1909 typing.DefaultDict, typing.FrozenSet[int]]
3208 self.assertIsSubclass(frozenset, typing.FrozenSet)
3209 self.assertNotIsSubclass(set, typing.FrozenSet)
3359 typing.FrozenSet()
3361 typing.FrozenSet[T]()
3363 typing.FrozenSet[int]()
3367 class MyFrozenSet(typing.FrozenSet[int]):
/third_party/python/Lib/
Dtyping.py1688 FrozenSet = _alias(frozenset, 1, inst=False, name='FrozenSet') variable
/third_party/python/Doc/library/
Dtyping.rst1106 .. class:: FrozenSet(frozenset, AbstractSet[T_co])
/third_party/python/Misc/
DNEWS18568 Collection (only for 3.6) (Issue #27598) - Add FrozenSet to __all__
21619 Collection (only for 3.6) (Issue #27598). Add FrozenSet to __all__