[pypy-svn] r10635 - in pypy/dist/pypy: interpreter module/sys2

pedronis at codespeak.net pedronis at codespeak.net
Thu Apr 14 19:25:05 CEST 2005


Author: pedronis
Date: Thu Apr 14 19:25:05 2005
New Revision: 10635

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
   pypy/dist/pypy/module/sys2/state.py
Log:
at this stage of translation work disable the new parser to be loaded in



Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Thu Apr 14 19:25:05 2005
@@ -86,7 +86,7 @@
         #     make this the default _sre module
         #self.setbuiltinmodule("_sre", "_sre_pypy") 
 
-        self.setbuiltinmodule('parser')
+        # XXX disabled: self.setbuiltinmodule('parser')
 
         # initialize with "bootstrap types" from objspace  (e.g. w_None)
         for name, value in self.__dict__.items():

Modified: pypy/dist/pypy/module/sys2/state.py
==============================================================================
--- pypy/dist/pypy/module/sys2/state.py	(original)
+++ pypy/dist/pypy/module/sys2/state.py	Thu Apr 14 19:25:05 2005
@@ -28,7 +28,7 @@
            'math', '_codecs', 'array', 'select',
            '_random', '_sre', 'time', '_socket', 'errno',
            'binascii', 'unicodedata',
-           #'parser'
+           'parser'
            ]: 
     if fn not in builtin_modules:
         try:



More information about the Pypy-commit mailing list