Home
last modified time | relevance | path

Searched refs:to_tuple (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_ast.py5 def to_tuple(t): function
9 return [to_tuple(e) for e in t]
16 result.append(to_tuple(getattr(t, f)))
220 self.assertEqual(to_tuple(ast_tree), o)
369 self.assertEqual(to_tuple(ast2), to_tuple(ast))
503 print repr(to_tuple(compile(s, "?", kind, 0x400)))+","
/external/python/cpython3/Lib/test/
Dtest_ast.py10 def to_tuple(t): function
14 return [to_tuple(e) for e in t]
21 result.append(to_tuple(getattr(t, f)))
248 self.assertEqual(to_tuple(ast_tree), o)
395 self.assertEqual(to_tuple(ast2), to_tuple(ast))
1135 print("%r," % (to_tuple(tree),))