[pypy-svn] r59474 - pypy/trunk/pypy/interpreter/pyparser/test

arigo at codespeak.net arigo at codespeak.net
Tue Oct 28 14:30:19 CET 2008


Author: arigo
Date: Tue Oct 28 14:30:16 2008
New Revision: 59474

Modified:
   pypy/trunk/pypy/interpreter/pyparser/test/fakes.py
Log:
Oups.  Fix tests.


Modified: pypy/trunk/pypy/interpreter/pyparser/test/fakes.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pyparser/test/fakes.py	(original)
+++ pypy/trunk/pypy/interpreter/pyparser/test/fakes.py	Tue Oct 28 14:30:16 2008
@@ -4,6 +4,9 @@
     w_str = str
     w_basestring = basestring
     w_int = int
+    w_long = long
+    w_float = float
+    w_complex = complex
 
     def wrap(self, obj):
         return obj
@@ -37,5 +40,3 @@
 
     def call_function(self, func, *args):
         return func(*args)
-
-    builtin = dict(int=int, long=long, float=float, complex=complex)



More information about the Pypy-commit mailing list