[pypy-svn] r48067 - pypy/dist/pypy/lang/smalltalk/test

arigo at codespeak.net arigo at codespeak.net
Fri Oct 26 16:31:14 CEST 2007


Author: arigo
Date: Fri Oct 26 16:31:13 2007
New Revision: 48067

Modified:
   pypy/dist/pypy/lang/smalltalk/test/test_interpreter.py
Log:
Far-fetched translation fix.  In truth, targetfibsmalltalk should not
really just call this function.


Modified: pypy/dist/pypy/lang/smalltalk/test/test_interpreter.py
==============================================================================
--- pypy/dist/pypy/lang/smalltalk/test/test_interpreter.py	(original)
+++ pypy/dist/pypy/lang/smalltalk/test/test_interpreter.py	Fri Oct 26 16:31:13 2007
@@ -62,7 +62,7 @@
                 res.storevarpointer(i, fakeliteral(lit[i]))
             return res
         return lit
-    return ["methodheader"] + [fakeliteral(lit) for lit in literals]
+    return [fakesymbol("methodheader")]+[fakeliteral(lit) for lit in literals]
 
 def new_interpreter(bytes, receiver=objtable.w_nil):
     assert isinstance(bytes, str)



More information about the Pypy-commit mailing list