[pypy-svn] r14895 - pypy/dist/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Thu Jul 21 22:31:14 CEST 2005


Author: arigo
Date: Thu Jul 21 22:31:14 2005
New Revision: 14895

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
Trying to enable our own _codecs module by default.


Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Thu Jul 21 22:31:14 2005
@@ -145,7 +145,7 @@
         self.setitem(self.builtin.w_dict, self.wrap('__builtins__'), w_builtin) 
         self.setbuiltinmodule('unicodedata')
         #  Uncomment the following line to enable the builtin _codecs module
-        #self.setbuiltinmodule('_codecs')
+        self.setbuiltinmodule('_codecs')
         # XXX we need to resolve unwrapping issues to 
         #     make this the default _sre module
         #self.setbuiltinmodule("_sre", "_sre_pypy")



More information about the Pypy-commit mailing list