def test_various_py3(self):
self.assertEqual(get_type_hints(testfunc),
{'a': int, 'c': str, 'b': Real, 'return': Tuple[int, Real]})
self.assertEqual(pytypes.deep_type(('abc', [3, 'a', 7], 4.5)),
Tuple[str, List[Union[int, str]], float])
评论列表
文章目录