[pypy-svn] r19212 - pypy/dist/pypy/translator/goal

pedronis at codespeak.net pedronis at codespeak.net
Sun Oct 30 22:36:15 CET 2005


Author: pedronis
Date: Sun Oct 30 22:36:14 2005
New Revision: 19212

Modified:
   pypy/dist/pypy/translator/goal/targetthunkstandalone.py
Log:
disable broken threads here too.



Modified: pypy/dist/pypy/translator/goal/targetthunkstandalone.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetthunkstandalone.py	(original)
+++ pypy/dist/pypy/translator/goal/targetthunkstandalone.py	Sun Oct 30 22:36:14 2005
@@ -58,12 +58,15 @@
 
     # disable translation of the whole of classobjinterp.py
     Space.setup_old_style_classes = lambda self: None
-    if options.gc == 'boehm':
-        #print "disabling thread with boehm for stabilitiy (combination not tested)"
-        #print "trying threads and boehm"
-        usemodules = []
-    else:
-        usemodules = ['thread']
+    # XXX threads are not working right now!
+    #if options.gc == 'boehm':
+    #    #print "disabling thread with boehm for stabilitiy (combination not tested)"
+    #    #print "trying threads and boehm"
+    #    usemodules = []
+    #else:
+    #    usemodules = ['thread']
+    usemodules = []
+
     space = Space(nofaking=True,
                   compiler="ast", # interpreter/astcompiler
                   translating=True,



More information about the Pypy-commit mailing list