[pypy-svn] r65956 - pypy/branch/pyjitpl5/pypy/jit/tl/spli

benjamin at codespeak.net benjamin at codespeak.net
Thu Jun 25 02:30:09 CEST 2009


Author: benjamin
Date: Thu Jun 25 02:30:08 2009
New Revision: 65956

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/spli/targetspli.py
Log:
fix translation of target

Modified: pypy/branch/pyjitpl5/pypy/jit/tl/spli/targetspli.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/spli/targetspli.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/spli/targetspli.py	Thu Jun 25 02:30:08 2009
@@ -22,7 +22,7 @@
         os._exit(1)
     args = argv[2:]
     stream = open_file_as_stream(argv[1])
-    co = serializer.deserialize(stream.readall(), space)
+    co = serializer.deserialize(stream.readall())
     frame = interpreter.SPLIFrame(co)
     for n in range(len(args)):
         frame.locals[n] = unwrap_arg(args[n])



More information about the Pypy-commit mailing list