summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-11-09 21:18:59 (GMT)
committerGuido van Rossum <guido@python.org>2016-11-09 21:18:59 (GMT)
commitf9099de8949af434eacb905680849ec3ac41348a (patch)
tree1cb7a2242dfe2cc1a35f7c5befd272d3065200d9 /Lib
parent991d14fee1805e17647940a2a8cbf4f62f0f09ea (diff)
downloadcpython-f9099de8949af434eacb905680849ec3ac41348a.zip
cpython-f9099de8949af434eacb905680849ec3ac41348a.tar.gz
cpython-f9099de8949af434eacb905680849ec3ac41348a.tar.bz2
Issue #28649: fix-typing-test-v2.diff
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_typing.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index ae9de61..0582845 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -743,10 +743,11 @@ class GenericTests(BaseTestCase):
self.assertEqual(repr(Callable[[], List[T]][int]).replace('typing.', ''),
'Callable[[], List[int]]')
- def test_generic_forvard_ref(self):
- def foobar(x: List[List['T']]): ...
+ def test_generic_forward_ref(self):
+ def foobar(x: List[List['CC']]): ...
+ class CC: ...
+ self.assertEqual(get_type_hints(foobar, globals(), locals()), {'x': List[List[CC]]})
T = TypeVar('T')
- self.assertEqual(get_type_hints(foobar, globals(), locals()), {'x': List[List[T]]})
def barfoo(x: Tuple[T, ...]): ...
self.assertIs(get_type_hints(barfoo, globals(), locals())['x'], Tuple[T, ...])