Author: Alex Gaynor <[email protected]>
Branch: 
Changeset: r60800:9aeefdb4841d
Date: 2013-01-31 17:54 -0800
http://bitbucket.org/pypy/pypy/changeset/9aeefdb4841d/

Log:    hidden frames are fairly rare, it's ok to unroll this

diff --git a/pypy/interpreter/executioncontext.py 
b/pypy/interpreter/executioncontext.py
--- a/pypy/interpreter/executioncontext.py
+++ b/pypy/interpreter/executioncontext.py
@@ -40,6 +40,7 @@
     def gettopframe(self):
         return self.topframeref()
 
+    @jit.unroll_safe
     def gettopframe_nohidden(self):
         frame = self.topframeref()
         while frame and frame.hide():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to