Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_typing.py1743 self.assertNotEqual(typing.FrozenSet[A[str]],
1744 typing.FrozenSet[mod_generics_cache.B.A[str]])
1917 typing.DefaultDict, typing.FrozenSet[int]]
3211 self.assertIsSubclass(frozenset, typing.FrozenSet)
3212 self.assertNotIsSubclass(set, typing.FrozenSet)
3362 typing.FrozenSet()
3364 typing.FrozenSet[T]()
3366 typing.FrozenSet[int]()
3370 class MyFrozenSet(typing.FrozenSet[int]):
/external/python/cpython3/Lib/
Dtyping.py1683 FrozenSet = _alias(frozenset, 1, inst=False, name='FrozenSet') variable
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst1140 Collection (only for 3.6) (Issue #27598) - Add FrozenSet to __all__
D3.5.3rc1.rst1127 Collection (only for 3.6) (Issue #27598). Add FrozenSet to __all__
/external/python/cpython3/Doc/library/
Dtyping.rst1106 .. class:: FrozenSet(frozenset, AbstractSet[T_co])