[pypy-svn] r59227 - pypy/branch/cbuild-refactor/pypy/config

fijal at codespeak.net fijal at codespeak.net
Sun Oct 19 12:15:51 CEST 2008


Author: fijal
Date: Sun Oct 19 12:15:49 2008
New Revision: 59227

Modified:
   pypy/branch/cbuild-refactor/pypy/config/pypyoption.py
Log:
* Leave a deprecation comment
* Remove bz2 from working modules on windows for now


Modified: pypy/branch/cbuild-refactor/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/config/pypyoption.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/config/pypyoption.py	Sun Oct 19 12:15:49 2008
@@ -36,12 +36,16 @@
     ["md5", "sha", "cStringIO", "itertools"]
 ))
 
+# XXX this should move somewhere else, maybe to platform ("is this posixish"
+#     check or something)
 if sys.platform == "win32":
     # unix only modules
     del working_modules["crypt"]
     del working_modules["fcntl"]
     del working_modules["termios"]
     del working_modules["_minimal_curses"]
+    # XXX this is temporary, hopefully
+    del working_modules["bz2"]
 
 if sys.platform == "sunos5":
     del working_modules['mmap']   # depend on ctypes, can'T get at c-level 'errono'



More information about the Pypy-commit mailing list