Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_typing.py895 self.assertNotEqual(typing.FrozenSet[A[str]],
896 typing.FrozenSet[mod_generics_cache.B.A[str]])
1062 typing.DefaultDict, typing.FrozenSet[int]]
2016 self.assertIsSubclass(frozenset, typing.FrozenSet)
2017 self.assertNotIsSubclass(set, typing.FrozenSet)
2156 typing.FrozenSet()
2158 typing.FrozenSet[T]()
2160 typing.FrozenSet[int]()
2164 class MyFrozenSet(typing.FrozenSet[int]):
/external/python/cpython3/Lib/
Dtyping.py1236 FrozenSet = _alias(frozenset, T_co, inst=False) 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.rst1128 Collection (only for 3.6) (Issue #27598). Add FrozenSet to __all__
/external/python/cpython3/Doc/library/
Dtyping.rst627 .. class:: FrozenSet(frozenset, AbstractSet[T_co])