[pypy-svn] r77582 - pypy/branch/fast-forward/pypy/config

afa at codespeak.net afa at codespeak.net
Mon Oct 4 19:27:35 CEST 2010


Author: afa
Date: Mon Oct  4 19:27:34 2010
New Revision: 77582

Modified:
   pypy/branch/fast-forward/pypy/config/pypyoption.py
Log:
Translation should use the _io module by default


Modified: pypy/branch/fast-forward/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/fast-forward/pypy/config/pypyoption.py	(original)
+++ pypy/branch/fast-forward/pypy/config/pypyoption.py	Mon Oct  4 19:27:34 2010
@@ -19,7 +19,7 @@
 default_modules.update(dict.fromkeys(
     ["_codecs", "gc", "_weakref", "marshal", "errno", "imp",
      "math", "_sre", "_pickle_support", "operator",
-     "parser", "symbol", "token", "_ast", "_random", "__pypy__",
+     "parser", "symbol", "token", "_ast",  "_io", "_random", "__pypy__",
      "_testing"]))
 
 



More information about the Pypy-commit mailing list