Two minor typing.py fixes (upstream #305)

This commit is contained in:
Guido van Rossum 2016-10-21 17:30:29 -07:00
parent ac353dfa14
commit 3b557991d4
2 changed files with 2 additions and 6 deletions

View file

@ -1182,7 +1182,7 @@ gth = get_type_hints
class GetTypeHintTests(BaseTestCase):
@skipUnless(PY36, 'Python 3.6 required')
def test_get_type_hints_modules(self):
self.assertEqual(gth(ann_module), {'x': int, 'y': str})
self.assertEqual(gth(ann_module), {1: 2, 'f': Tuple[int, int], 'x': int, 'y': str})
self.assertEqual(gth(ann_module2), {})
self.assertEqual(gth(ann_module3), {})