[pypy-commit] pypy default: Translation of cpyext requires the array module.

amauryfa noreply at buildbot.pypy.org
Mon Jun 11 23:23:36 CEST 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r55603:33c305197a3d
Date: 2012-06-11 23:01 +0200
http://bitbucket.org/pypy/pypy/changeset/33c305197a3d/

Log:	Translation of cpyext requires the array module.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -79,6 +79,7 @@
 module_dependencies = {
     '_multiprocessing': [('objspace.usemodules.rctime', True),
                          ('objspace.usemodules.thread', True)],
+    'cpyext': [('objspace.usemodules.array', True)],
     }
 module_suggests = {
     # the reason you want _rawffi is for ctypes, which


More information about the pypy-commit mailing list