aboutsummaryrefslogtreecommitdiffstats
path: root/Demo
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-06-28 19:54:19 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-06-28 19:54:19 +0000
commit0187be082562471206fc0e7ee7231ecad591ab19 (patch)
tree5bcf396691d513478df0e1529a928f8d261cbd06 /Demo
parentce3742c693820c0b6821217c266e061507ca45a9 (diff)
downloadplatform_external_python_cpython2-0187be082562471206fc0e7ee7231ecad591ab19.tar.gz
platform_external_python_cpython2-0187be082562471206fc0e7ee7231ecad591ab19.tar.bz2
platform_external_python_cpython2-0187be082562471206fc0e7ee7231ecad591ab19.zip
unparse.py: fix mispaced parentheses in chained comparisons
Diffstat (limited to 'Demo')
-rw-r--r--Demo/parser/test_unparse.py4
-rw-r--r--Demo/parser/unparse.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/Demo/parser/test_unparse.py b/Demo/parser/test_unparse.py
index 4f3a28e52b..857b999829 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 d48ddd1b28..98aeb32d57 100644
--- a/Demo/parser/unparse.py
+++ b/Demo/parser/unparse.py
@@ -388,7 +388,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):