diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-08-09 21:17:12 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-08-09 21:17:12 (GMT) |
commit | 71ce8970cf7115bc344de1fc2e0205868925ce54 (patch) | |
tree | 68e9c992f422d81e0a3c1c82d8ccdb2203755bb3 /Lib/test/test_ast.py | |
parent | e451ec393faa67e5d7ed692d36d3245dd18c4457 (diff) | |
download | cpython-71ce8970cf7115bc344de1fc2e0205868925ce54.zip cpython-71ce8970cf7115bc344de1fc2e0205868925ce54.tar.gz cpython-71ce8970cf7115bc344de1fc2e0205868925ce54.tar.bz2 |
fix indentation
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class ASTValidatorTests(unittest.TestCase): 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())]) |