[pypy-svn] r73125 - pypy/branch/cleanup-objspace-init/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Mon Mar 29 20:47:44 CEST 2010


Author: benjamin
Date: Mon Mar 29 20:47:43 2010
New Revision: 73125

Modified:
   pypy/branch/cleanup-objspace-init/pypy/objspace/std/objspace.py
Log:
these assignments needn't line up

Modified: pypy/branch/cleanup-objspace-init/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/branch/cleanup-objspace-init/pypy/objspace/std/objspace.py	(original)
+++ pypy/branch/cleanup-objspace-init/pypy/objspace/std/objspace.py	Mon Mar 29 20:47:43 2010
@@ -100,9 +100,9 @@
                 self.method_cache_misses = {}
 
         # singletons
-        self.w_None  = W_NoneObject.w_None
+        self.w_None = W_NoneObject.w_None
         self.w_False = W_BoolObject.w_False
-        self.w_True  = W_BoolObject.w_True
+        self.w_True = W_BoolObject.w_True
         self.w_NotImplemented = self.wrap(special.NotImplemented(self))
         self.w_Ellipsis = self.wrap(special.Ellipsis(self))
 



More information about the Pypy-commit mailing list