diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-27 17:51:18 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-27 17:51:18 -0500 |
commit | c98198d3ca0b02ab07f5a8109941a0ff38d7e388 (patch) | |
tree | 8b53b4f58ee2e31b83cce17d0d78ce2731b0e419 | |
parent | 90ebedc6269b5423c4747e80e005892939297424 (diff) | |
download | cpython-git-c98198d3ca0b02ab07f5a8109941a0ff38d7e388.tar.gz |
fix ws
-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 6017a30233..a9d55c0632 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -310,7 +310,7 @@ class AST_Tests(unittest.TestCase): self.assertEqual(x.left, n1) self.assertEqual(x.op, addop) self.assertEqual(x.right, n3) - + x = ast.BinOp(1, 2, 3) self.assertEqual(x.left, 1) self.assertEqual(x.op, 2) |