commit | 71ce8970cf7115bc344de1fc2e0205868925ce54 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Aug 09 16:17:12 2011 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Aug 09 16:17:12 2011 -0500 |
tree | 68e9c992f422d81e0a3c1c82d8ccdb2203755bb3 | |
parent | e451ec393faa67e5d7ed692d36d3245dd18c4457 [diff] [blame] |
fix indentation
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index f56a44a..273185c 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py
@@ -738,7 +738,7 @@ l = ast.Name("x", ast.Load()) s = ast.Name("y", ast.Store()) for args in (s, l, l), (l, s, l), (l, l, s): - self.expr(ast.IfExp(*args), "must have Load context") + self.expr(ast.IfExp(*args), "must have Load context") def test_dict(self): d = ast.Dict([], [ast.Name("x", ast.Load())])