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

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Jan 10 16:57:42 CET 2007


Author: cfbolz
Date: Wed Jan 10 16:57:42 2007
New Revision: 36414

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
hm, not a completely good plan to make signal a default module.


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Wed Jan 10 16:57:42 2007
@@ -14,14 +14,14 @@
 default_modules = essential_modules.copy()
 default_modules.update(dict.fromkeys(
     ["_codecs", "gc", "_weakref", "array", "marshal", "errno",
-     "math", "_sre", "_pickle_support", "signal",
+     "math", "_sre", "_pickle_support",
      "recparser", "symbol", "_random", "pypymagic"]))
 
 
 working_modules = default_modules.copy()
 working_modules.update(dict.fromkeys(
     ["rsocket", "unicodedata", "mmap", "fcntl", "rctime", "select", "bz2",
-     "crypt",
+     "crypt", "signal",
     ]
 ))
 



More information about the Pypy-commit mailing list