From: Mark Dickinson Date: Mon, 28 Jun 2010 20:09:18 +0000 (+0000) Subject: Merged revisions 82345 via svnmerge from X-Git-Tag: v3.2a1~399 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5451e546a720392c1ceef9c33db336e6ebd2d7e;p=python Merged revisions 82345 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82345 | mark.dickinson | 2010-06-28 20:54:19 +0100 (Mon, 28 Jun 2010) | 1 line unparse.py: fix mispaced parentheses in chained comparisons ........ --- diff --git a/Demo/parser/test_unparse.py b/Demo/parser/test_unparse.py index aa6f2704ef..edc9ee16f1 100644 --- a/Demo/parser/test_unparse.py +++ b/Demo/parser/test_unparse.py @@ -53,6 +53,10 @@ class UnparseTestCase(unittest.TestCase): self.check_roundtrip("not True or False") self.check_roundtrip("True or not False") + def test_chained_comparisons(self): + self.check_roundtrip("1 < 4 <= 5") + self.check_roundtrip("a is b is c is not d") + def test_main(): test.support.run_unittest(UnparseTestCase) diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index b02ef75db5..0d62e54ef6 100644 --- a/Demo/parser/unparse.py +++ b/Demo/parser/unparse.py @@ -379,7 +379,7 @@ class Unparser: for o, e in zip(t.ops, t.comparators): self.write(" " + self.cmpops[o.__class__.__name__] + " ") self.dispatch(e) - self.write(")") + self.write(")") boolops = {_ast.And: 'and', _ast.Or: 'or'} def _BoolOp(self, t):