Author: Armin Rigo <[email protected]>
Branch: stmgc-c7
Changeset: r75759:fdd9315038c5
Date: 2015-02-08 10:09 +0100
http://bitbucket.org/pypy/pypy/changeset/fdd9315038c5/

Log:    re-add 'signals_enabled'

diff --git a/lib_pypy/transaction.py b/lib_pypy/transaction.py
--- a/lib_pypy/transaction.py
+++ b/lib_pypy/transaction.py
@@ -232,7 +232,8 @@
                 with atomic:
                     if len(exception) == 0:
                         try:
-                            f(*args, **kwds)
+                            with signals_enabled:
+                                f(*args, **kwds)
                         except:
                             exception.extend(sys.exc_info())
                 del next_transaction
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to