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

tismer at codespeak.net tismer at codespeak.net
Wed Mar 23 03:19:36 CET 2005


Author: tismer
Date: Wed Mar 23 03:19:35 2005
New Revision: 10108

Modified:
   pypy/dist/pypy/module/sys2/state.py
Log:
had do re-fake binascii.
Reason:
16 modules break directly if binascii is not completely working.
Please remove it from the list only on your machine, finalize
binascii, and then check your change to state.py in.

Modified: pypy/dist/pypy/module/sys2/state.py
==============================================================================
--- pypy/dist/pypy/module/sys2/state.py	(original)
+++ pypy/dist/pypy/module/sys2/state.py	Wed Mar 23 03:19:35 2005
@@ -27,6 +27,7 @@
 for fn in ['posix', 'nt', 'os2', 'mac', 'ce', 'riscos',
            'math', '_codecs', 'array', 'select',
            '_random', '_sre', 'time', '_socket', 'errno',
+           'binascii',
            #'parser'
            ]: 
     if fn not in builtin_modules:



More information about the Pypy-commit mailing list