[pypy-commit] pypy optresult: work on rpython and recursive stuff

fijal noreply at buildbot.pypy.org
Tue Jun 2 15:19:29 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult
Changeset: r77762:6e5fd3dc775a
Date: 2015-06-02 14:57 +0200
http://bitbucket.org/pypy/pypy/changeset/6e5fd3dc775a/

Log:	work on rpython and recursive stuff

diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py
--- a/rpython/rtyper/llinterp.py
+++ b/rpython/rtyper/llinterp.py
@@ -83,6 +83,7 @@
                     self.tracer.dump('LLException: %s\n' % (e,))
                 raise
             except Exception, e:
+                tb = sys.exc_info()[2]
                 if getattr(e, '_go_through_llinterp_uncaught_', False):
                     raise
                 log.error("AN ERROR OCCURED: %s" % (e, ))


More information about the pypy-commit mailing list