[pypy-svn] r12092 - pypy/dist/pypy/module/sys2

hpk at codespeak.net hpk at codespeak.net
Sun May 8 23:51:49 CEST 2005


Author: hpk
Date: Sun May  8 23:51:48 2005
New Revision: 12092

Modified:
   pypy/dist/pypy/module/sys2/state.py
Log:
try to lookup codecs and binascii if they are not in pypy/lib.
Actually i am tempted to rename lib/_codecs to
inprogress_codecs.py as well because enabling it breaks 
a number of compliance tests currently. 



Modified: pypy/dist/pypy/module/sys2/state.py
==============================================================================
--- pypy/dist/pypy/module/sys2/state.py	(original)
+++ pypy/dist/pypy/module/sys2/state.py	Sun May  8 23:51:48 2005
@@ -28,7 +28,7 @@
            'math', 'array', 'select',
            '_random', '_sre', 'time', '_socket', 'errno',
            'unicodedata',
-           'parser', 'fcntl', #'_codecs', 'binascii'
+           'parser', 'fcntl', '_codecs', 'binascii'
            ]: 
     if fn not in builtin_modules and not os.path.exists(
             os.path.join(os.path.dirname(pypy.__file__),



More information about the Pypy-commit mailing list