Author: Armin Rigo <ar...@tunes.org>
Branch: stmgc-c4
Changeset: r66814:35e42cb1574d
Date: 2013-09-05 22:39 +0200
http://bitbucket.org/pypy/pypy/changeset/35e42cb1574d/

Log:    the call to report_abort_info() is disabled for now because it's
        buggy

diff --git a/lib_pypy/transaction.py b/lib_pypy/transaction.py
--- a/lib_pypy/transaction.py
+++ b/lib_pypy/transaction.py
@@ -229,13 +229,15 @@
             while True:
                 with signals_enabled:
                     with atomic:
-                        info = last_abort_info()
-                        if info is None:
+                        # XXX the call to report_abort_info() is disabled for
+                        # XXX now because it's buggy
+                        #info = last_abort_info()
+                        #if info is None:
                             if not got_exception:
                                 f(*args, **kwds)
                             # else return early if already an exc to reraise
                             return
-                report_abort_info(info)
+                #report_abort_info(info)
         except:
             got_exception[:] = sys.exc_info()
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to