[pypy-svn] r66397 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Sat Jul 18 22:45:09 CEST 2009


Author: benjamin
Date: Sat Jul 18 22:45:09 2009
New Revision: 66397

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py
Log:
it's silly to have to make a copy, but oh well..

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py	Sat Jul 18 22:45:09 2009
@@ -298,7 +298,7 @@
                              stack_depth,
                              flags,
                              bytecode,
-                             consts_w,
+                             list(consts_w),
                              names,
                              var_names,
                              self.compile_info.filename,



More information about the Pypy-commit mailing list