[pypy-svn] r8539 - pypy/dist/pypy/module

sanxiyn at codespeak.net sanxiyn at codespeak.net
Tue Jan 25 10:41:34 CET 2005


Author: sanxiyn
Date: Tue Jan 25 10:41:34 2005
New Revision: 8539

Modified:
   pypy/dist/pypy/module/sysinterp.py
Log:
borrow array module


Modified: pypy/dist/pypy/module/sysinterp.py
==============================================================================
--- pypy/dist/pypy/module/sysinterp.py	(original)
+++ pypy/dist/pypy/module/sysinterp.py	Tue Jan 25 10:41:34 2005
@@ -36,7 +36,7 @@
 # The following built-in modules are not written in PyPy, so we
 # steal them from Python.
 for fn in ['posix', 'nt', 'os2', 'mac', 'ce', 'riscos',
-           'itertools', 'math', '_codecs',
+           'itertools', 'math', '_codecs', 'array',
            '_random', '_sre', 'time', '_socket', 'errno',
            'marshal', 'binascii', 'parser']:
     if fn not in builtin_modules:



More information about the Pypy-commit mailing list