[pypy-svn] r72339 - pypy/trunk/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Thu Mar 18 02:07:30 CET 2010


Author: benjamin
Date: Thu Mar 18 02:07:28 2010
New Revision: 72339

Modified:
   pypy/trunk/pypy/interpreter/astcompiler/codegen.py
Log:
adding None here isn't required

Modified: pypy/trunk/pypy/interpreter/astcompiler/codegen.py
==============================================================================
--- pypy/trunk/pypy/interpreter/astcompiler/codegen.py	(original)
+++ pypy/trunk/pypy/interpreter/astcompiler/codegen.py	Thu Mar 18 02:07:28 2010
@@ -1273,7 +1273,6 @@
             self.add_const(doc_str.s)
             start = 1
         else:
-            self.add_const(self.space.w_None)
             start = 0
         if func.args.args:
             self._handle_nested_args(func.args.args)



More information about the Pypy-commit mailing list