[pypy-commit] pypy py3k: Finally enable cpyext module. Yes!

amauryfa noreply at buildbot.pypy.org
Thu Nov 22 23:49:58 CET 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r59050:4d32a1cbce36
Date: 2012-11-22 22:46 +0100
http://bitbucket.org/pypy/pypy/changeset/4d32a1cbce36/

Log:	Finally enable cpyext module. Yes! Note that it's unlikely to
	compile any Python3 module yet, the new PyModule_Create() function
	is not yet supported.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -39,11 +39,6 @@
      ]
 ))
 
-# Here is the list of modules known to not work yet
-for name in ["cpyext",
-             ]:
-    del working_modules[name]
-
 translation_modules = default_modules.copy()
 translation_modules.update(dict.fromkeys(
     ["fcntl", "rctime", "select", "signal", "_rawffi", "zlib",


More information about the pypy-commit mailing list