[pypy-svn] r38943 - pypy/dist/pypy/config

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Feb 15 19:14:24 CET 2007


Author: cfbolz
Date: Thu Feb 15 19:14:22 2007
New Revision: 38943

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
it seems bz2 is not working for everybody as well as it does for me.


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Thu Feb 15 19:14:22 2007
@@ -23,14 +23,11 @@
 
 working_modules = default_modules.copy()
 working_modules.update(dict.fromkeys(
-    ["rsocket", "unicodedata", "mmap", "fcntl", "rctime", "select", "bz2",
+    ["rsocket", "unicodedata", "mmap", "fcntl", "rctime", "select",
      "crypt", "signal",
     ]
 ))
 
-if platform.machine() == "x86_64" and sys.maxint != 2147483647:
-    del working_modules['bz2'] # not 64 bit ready
-
 module_dependencies = { }
 if os.name == "posix":
     module_dependencies['rctime'] = [("objspace.usemodules.select", True),]



More information about the Pypy-commit mailing list