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

ale at codespeak.net ale at codespeak.net
Tue Jun 7 21:50:04 CEST 2005


Author: ale
Date: Tue Jun  7 21:50:02 2005
New Revision: 13163

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
By uncommenting a line _codecs will be a builtin module

Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Tue Jun  7 21:50:02 2005
@@ -130,7 +130,8 @@
         self.setitem(w_modules, w_name, w_builtin) 
         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')
         # 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