[pypy-svn] r65860 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler/tools

benjamin at codespeak.net benjamin at codespeak.net
Sun Jun 21 23:54:36 CEST 2009


Author: benjamin
Date: Sun Jun 21 23:54:36 2009
New Revision: 65860

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/tools/asdl_py.py
Log:
rewrap

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/tools/asdl_py.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/tools/asdl_py.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/tools/asdl_py.py	Sun Jun 21 23:54:36 2009
@@ -152,7 +152,8 @@
         self.emit("")
 
     def visitField(self, field, simple):
-        if field.type.value not in asdl.builtin_types and field.type.value not in simple:
+        if field.type.value not in asdl.builtin_types and \
+                field.type.value not in simple:
             if field.seq or field.opt:
                 self.emit("if node.%s:" % (field.name,), 2)
                 level = 3



More information about the Pypy-commit mailing list