[pypy-svn] r72134 - pypy/trunk/pypy/objspace/std

fijal at codespeak.net fijal at codespeak.net
Thu Mar 11 21:10:20 CET 2010


Author: fijal
Date: Thu Mar 11 21:09:54 2010
New Revision: 72134

Modified:
   pypy/trunk/pypy/objspace/std/typeobject.py
Log:
remove pointless decorators - jit will not unroll stuff without explicit
safe_unroll


Modified: pypy/trunk/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/typeobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/typeobject.py	Thu Mar 11 21:09:54 2010
@@ -221,7 +221,6 @@
         return None
                 
 
-    @dont_look_inside
     def _lookup(w_self, key):
         space = w_self.space
         for w_class in w_self.mro_w:
@@ -230,7 +229,6 @@
                 return w_value
         return None
 
-    @dont_look_inside
     def _lookup_where(w_self, key):
         # like lookup() but also returns the parent class in which the
         # attribute was found



More information about the Pypy-commit mailing list