Searched refs:PandT (Results 1 - 1 of 1) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_typing.py | 7779 class PandT(Generic[P, T]): class 7782 C1 = PandT[P, T] 7785 self.assertEqual(C1[[int, str], bool], PandT[[int, str], bool]) 7787 C2 = PandT[[int, T], T] 7790 self.assertEqual(C2[str], PandT[[int, str], str]) 7792 C3 = PandT[[int, *Ts], T] 7795 self.assertEqual(C3[str, bool, bytes], PandT[[int, str, bool], bytes])
|
Completed in 13 milliseconds