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

benjamin at codespeak.net benjamin at codespeak.net
Sat Jul 18 04:22:20 CEST 2009


Author: benjamin
Date: Sat Jul 18 04:22:19 2009
New Revision: 66346

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

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	Sat Jul 18 04:22:19 2009
@@ -77,6 +77,7 @@
 
     def visitProduct(self, product, name, simple):
         self.emit("class %s(AST):" % (name,))
+        self.emit("")
         slots = ", ".join(repr(field.name.value) for field in product.fields)
         self.emit("__slots__ = (%s)" % (slots,), 1)
         self.emit("")



More information about the Pypy-commit mailing list