[pypy-svn] r78587 - pypy/branch/mapdict-without-jit/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Oct 31 11:43:28 CET 2010


Author: cfbolz
Date: Sun Oct 31 11:43:27 2010
New Revision: 78587

Modified:
   pypy/branch/mapdict-without-jit/pypy/objspace/std/mapdict.py
Log:
the jit shouldn't look into this function



Modified: pypy/branch/mapdict-without-jit/pypy/objspace/std/mapdict.py
==============================================================================
--- pypy/branch/mapdict-without-jit/pypy/objspace/std/mapdict.py	(original)
+++ pypy/branch/mapdict-without-jit/pypy/objspace/std/mapdict.py	Sun Oct 31 11:43:27 2010
@@ -48,6 +48,7 @@
         else:
             return self._index(selector)
 
+    @jit.dont_look_inside
     def _index_cache(self, selector):
         space = self.space
         cache = space.fromcache(IndexCache)



More information about the Pypy-commit mailing list