[pypy-commit] pypy default: remove nonsense hints (those functions contain loops)

fijal noreply at buildbot.pypy.org
Mon Dec 26 10:08:15 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r50865:45a754407e3d
Date: 2011-12-26 11:01 +0200
http://bitbucket.org/pypy/pypy/changeset/45a754407e3d/

Log:	remove nonsense hints (those functions contain loops)

diff --git a/pypy/interpreter/eval.py b/pypy/interpreter/eval.py
--- a/pypy/interpreter/eval.py
+++ b/pypy/interpreter/eval.py
@@ -98,7 +98,6 @@
         "Abstract. Get the expected number of locals."
         raise TypeError, "abstract"
 
-    @jit.dont_look_inside
     def fast2locals(self):
         # Copy values from the fastlocals to self.w_locals
         if self.w_locals is None:
@@ -112,7 +111,6 @@
                 w_name = self.space.wrap(name)
                 self.space.setitem(self.w_locals, w_name, w_value)
 
-    @jit.dont_look_inside
     def locals2fast(self):
         # Copy values from self.w_locals to the fastlocals
         assert self.w_locals is not None


More information about the pypy-commit mailing list