[pypy-svn] r25338 - pypy/dist/pypy/objspace

ale at codespeak.net ale at codespeak.net
Wed Apr 5 09:25:12 CEST 2006


Author: ale
Date: Wed Apr  5 09:25:10 2006
New Revision: 25338

Modified:
   pypy/dist/pypy/objspace/logic.py
Log:
Small change to make logic object space translateable


Modified: pypy/dist/pypy/objspace/logic.py
==============================================================================
--- pypy/dist/pypy/objspace/logic.py	(original)
+++ pypy/dist/pypy/objspace/logic.py	Wed Apr  5 09:25:10 2006
@@ -11,6 +11,7 @@
 from pypy.objspace.std.stringobject import W_StringObject
 from pypy.objspace.std.model import StdObjSpaceMultiMethod
 
+
 #-- THE BUILTINS ----------------------------------------------------------------------
 
 # this collects all multimethods to be made part of the Space
@@ -183,6 +184,7 @@
 
 class W_Var(W_Root, object):
     def __init__(w_self):
+        #w_self.typedef = 'Variable'
         w_self.w_bound_to = w_self 
         w_self.w_needed = False    
 



More information about the Pypy-commit mailing list