[pypy-svn] r7423 - pypy/trunk/src/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Fri Nov 19 12:02:38 CET 2004


Author: mwh
Date: Fri Nov 19 12:02:38 2004
New Revision: 7423

Modified:
   pypy/trunk/src/pypy/interpreter/baseobjspace.py
Log:
One more specialize -> _specialize_ spotted by Samuele.


Modified: pypy/trunk/src/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/trunk/src/pypy/interpreter/baseobjspace.py	Fri Nov 19 12:02:38 2004
@@ -92,7 +92,7 @@
 
     def loadfromcache(self, key, builder, cache):
         return cache.getorbuild(key, builder, self) 
-    loadfromcache.specialize = True 
+    loadfromcache._specialize_ = "location" 
 
     def getexecutioncontext(self):
         "Return what we consider to be the active execution context."



More information about the Pypy-commit mailing list