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/unparse.py b/Demo/parser/unparse.py
index b02ef75..0d62e54 100644
--- a/Demo/parser/unparse.py
+++ b/Demo/parser/unparse.py
@@ -379,7 +379,7 @@
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):