diff options
| author | Benjamin Peterson <benjamin@python.org> | 2011-06-27 22:51:18 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2011-06-27 22:51:18 (GMT) |
| commit | 68b543aa02b897d6ad7584ef13f1197942c7a950 (patch) | |
| tree | be05a1a9b241cb14fdbb1794898877e81074e440 /Lib/test/test_ast.py | |
| parent | 6ccfe85847fb904f25036ba31edf35288074699a (diff) | |
| download | cpython-68b543aa02b897d6ad7584ef13f1197942c7a950.zip cpython-68b543aa02b897d6ad7584ef13f1197942c7a950.tar.gz cpython-68b543aa02b897d6ad7584ef13f1197942c7a950.tar.bz2 | |
fix ws
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 ab5d19b..13ec2d0 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -305,7 +305,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) |
