Lines Matching defs:SpecialAttrsP
7933 SpecialAttrsP = typing.ParamSpec('SpecialAttrsP')
8038 typing.Concatenate[Any, SpecialAttrsP]: 'Concatenate',
8050 # - typing.ParamSpec('SpecialAttrsP')
8107 self.assertEqual(SpecialAttrsP.__name__, 'SpecialAttrsP')
8108 self.assertFalse(hasattr(SpecialAttrsP, '__qualname__'))
8109 self.assertEqual(SpecialAttrsP.__module__, __name__)
8112 s = pickle.dumps(SpecialAttrsP, proto)
8114 self.assertIs(SpecialAttrsP, loaded)