[pypy-svn] r54662 - pypy/dist/pypy/config
bigdog at codespeak.net
bigdog at codespeak.net
Sun May 11 23:45:01 CEST 2008
Author: bigdog
Date: Sun May 11 23:44:58 2008
New Revision: 54662
Modified:
pypy/dist/pypy/config/pypyoption.py
Log:
add select and signal to modules skipped for win32 allworkingmodules.
Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py (original)
+++ pypy/dist/pypy/config/pypyoption.py Sun May 11 23:44:58 2008
@@ -35,6 +35,10 @@
del working_modules["termios"]
del working_modules["_rawffi"]
del working_modules["_minimal_curses"]
+ del working_modules["signal"]
+ del working_modules["select"]
+
+
module_dependencies = {}
module_suggests = { # the reason you want _rawffi is for ctypes, which
More information about the Pypy-commit
mailing list