[pypy-svn] r52312 - pypy/branch/buffer/pypy/config

arigo at codespeak.net arigo at codespeak.net
Sat Mar 8 23:18:34 CET 2008


Author: arigo
Date: Sat Mar  8 23:18:33 2008
New Revision: 52312

Modified:
   pypy/branch/buffer/pypy/config/pypyoption.py
Log:
Update options.


Modified: pypy/branch/buffer/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/buffer/pypy/config/pypyoption.py	(original)
+++ pypy/branch/buffer/pypy/config/pypyoption.py	Sat Mar  8 23:18:33 2008
@@ -24,7 +24,7 @@
 working_modules.update(dict.fromkeys(
     ["_socket", "unicodedata", "mmap", "fcntl", "rctime", "select",
      "crypt", "signal", "dyngram", "readline", "termios", "zlib",
-     "struct", "md5", "sha", "bz2",
+     "array", "struct", "md5", "sha", "bz2",
     ]
 ))
 
@@ -35,7 +35,8 @@
     del working_modules["termios"]
 
 
-module_dependencies = {'array': [("objspace.usemodules.struct", True)],
+module_dependencies = {'array': [("objspace.usemodules.struct", True),
+                                 ("objspace.usemodules.__pypy__", True)],
                        }
 module_suggests = {    # the reason you want _rawffi is for ctypes, which
                        # itself needs the interp-level struct module



More information about the Pypy-commit mailing list