From: Benjamin Peterson Date: Tue, 9 Aug 2011 21:17:12 +0000 (-0500) Subject: fix indentation X-Git-Tag: v3.3.0a1~1727 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71ce8970cf7115bc344de1fc2e0205868925ce54;p=thirdparty%2FPython%2Fcpython.git fix indentation --- diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index f56a44afd4f8..273185c3b8cd 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())])