[pypy-commit] pypy py3k: Remove many modules from "working_modules".

amauryfa noreply at buildbot.pypy.org
Wed Oct 19 23:11:13 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r48239:f24a5ad97e35
Date: 2011-10-19 22:31 +0200
http://bitbucket.org/pypy/pypy/changeset/f24a5ad97e35/

Log:	Remove many modules from "working_modules". There are still enough
	builtin modules to run most regression tests

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -37,6 +37,18 @@
      "_continuation"]
 ))
 
+# XXX Here is the list of modules not known to work yet
+for name in [
+    "mmap", "_locale", "pwd",
+    "zipimport", "_lsprof",
+    "crypt", "_rawffi", "termios", "zlib", "bz2",
+    "_hashlib", "_md5", "_sha", "_minimal_curses", "cStringIO",
+    "thread", "itertools", "pyexpat", "_ssl", "cpyext",
+    "_bisect", "_multiprocessing",
+    "_collections", "_multibytecodec", "micronumpy", "_ffi",
+    "_continuation"]:
+    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