[pypy-commit] pypy stm-gc: Disable the signal module with stm for now.

arigo noreply at buildbot.pypy.org
Thu Feb 23 15:02:11 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r52805:5c85b1a8c846
Date: 2012-02-23 15:00 +0100
http://bitbucket.org/pypy/pypy/changeset/5c85b1a8c846/

Log:	Disable the signal module with stm for now.

diff --git a/pypy/translator/goal/targetpypystandalone.py b/pypy/translator/goal/targetpypystandalone.py
--- a/pypy/translator/goal/targetpypystandalone.py
+++ b/pypy/translator/goal/targetpypystandalone.py
@@ -187,6 +187,7 @@
 
         if config.translation.stm:
             config.objspace.usemodules.transaction = True
+            config.objspace.usemodules.signal = False     # XXX!
         elif config.objspace.usemodules.transaction:
             raise Exception("use --stm, not --withmod-transaction alone")
 


More information about the pypy-commit mailing list