[pypy-svn] r39885 - pypy/branch/pypy-2.5/pypy/config

gbrandl at codespeak.net gbrandl at codespeak.net
Sun Mar 4 15:11:31 CET 2007


Author: gbrandl
Date: Sun Mar  4 15:11:29 2007
New Revision: 39885

Modified:
   pypy/branch/pypy-2.5/pypy/config/pypyoption.py
Log:
operator must be in the default modules.



Modified: pypy/branch/pypy-2.5/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/pypy-2.5/pypy/config/pypyoption.py	(original)
+++ pypy/branch/pypy-2.5/pypy/config/pypyoption.py	Sun Mar  4 15:11:29 2007
@@ -17,7 +17,7 @@
 default_modules = essential_modules.copy()
 default_modules.update(dict.fromkeys(
     ["_codecs", "gc", "_weakref", "array", "marshal", "errno",
-     "math", "_sre", "_pickle_support",
+     "math", "_sre", "_pickle_support", "operator",
      "recparser", "symbol", "_random", "pypymagic"]))
 
 



More information about the Pypy-commit mailing list