Author: Antonio Cuni <anto.c...@gmail.com>
Branch: faster-rstruct
Changeset: r80918:7f3a328c275d
Date: 2015-11-25 00:55 +0100
http://bitbucket.org/pypy/pypy/changeset/7f3a328c275d/

Log:    re-enable cpyext and micronumpy. The failure due to micronumpy seems
        to be random

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -39,9 +39,6 @@
     "_csv", "cppyy", "_pypyjson"
 ])
 
-working_modules.remove('micronumpy')  # XXX temporary
-working_modules.remove('cpyext')
-
 if ((sys.platform.startswith('linux') or sys.platform == 'darwin')
     and os.uname()[4] == 'x86_64' and sys.maxint > 2**32):
     # it's not enough that we get x86_64
@@ -335,8 +332,6 @@
 
 
 def enable_allworkingmodules(config):
-    config.objspace.usemodules.cpyext = False # XXX
-
     modules = working_modules.copy()
     if config.translation.sandbox:
         modules = default_modules
@@ -346,7 +341,6 @@
 
     config.objspace.usemodules.suggest(**dict.fromkeys(modules, True))
 
-
 def enable_translationmodules(config):
     modules = translation_modules
     modules = [name for name in modules if name not in essential_modules]
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to