Searched refs:ann_module (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/test/ |
D | test_opcodes.py | 4 from test import ann_module, support 27 with open(ann_module.__file__, encoding="utf-8") as f: 29 co = compile(txt, ann_module.__file__, 'exec')
|
D | test_typing.py | 2974 from test import ann_module, ann_module2, ann_module3, ann_module5, ann_module6 3048 @ann_module.dec 3052 @ann_module.dec 3053 @ann_module.dec 3070 self.assertEqual(gth(ann_module), ann_module_type_hints) 3084 self.assertEqual(gth(ann_module.C), # gth will find the right globalns 3085 {'y': Optional[ann_module.C]}) 3086 self.assertIsInstance(gth(ann_module.j_class), dict) 3087 self.assertEqual(gth(ann_module.M), {'123': 123, 'o': type}) 3088 self.assertEqual(gth(ann_module.D), [all …]
|
D | test_grammar.py | 16 import test.ann_module as ann_module namespace 475 self.assertEqual(ann_module.__annotations__, 477 self.assertEqual(ann_module.M.__annotations__,
|