[pypy-svn] r73014 - pypy/branch/cpython-extension/pypy/config

xoraxax at codespeak.net xoraxax at codespeak.net
Sun Mar 28 03:40:10 CEST 2010


Author: xoraxax
Date: Sun Mar 28 03:40:09 2010
New Revision: 73014

Modified:
   pypy/branch/cpython-extension/pypy/config/pypyoption.py
Log:
Add cpyext to the allmodules list.

Modified: pypy/branch/cpython-extension/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/config/pypyoption.py	(original)
+++ pypy/branch/cpython-extension/pypy/config/pypyoption.py	Sun Mar 28 03:40:09 2010
@@ -29,7 +29,7 @@
       "rctime" , "select", "zipimport", "_lsprof",
      "crypt", "signal", "_rawffi", "termios", "zlib",
      "struct", "md5", "sha", "bz2", "_minimal_curses", "cStringIO",
-     "thread", "itertools", "pyexpat", "_ssl"]
+     "thread", "itertools", "pyexpat", "_ssl", "cpyext"]
 ))
 
 working_oo_modules = default_modules.copy()
@@ -66,6 +66,7 @@
                        # itself needs the interp-level struct module
                        # because 'P' is missing from the app-level one
                        '_rawffi': [("objspace.usemodules.struct", True)],
+                       'cpyext': [("translation.secondaryentrypoints", "cpyext")],
                        }
 
 module_import_dependencies = {



More information about the Pypy-commit mailing list