[pypy-svn] r3361 - pypy/trunk/src/pypy/module
sanxiyn at codespeak.net
sanxiyn at codespeak.net
Wed Mar 24 11:00:13 CET 2004
Author: sanxiyn
Date: Wed Mar 24 11:00:12 2004
New Revision: 3361
Modified:
pypy/trunk/src/pypy/module/sysinterp.py
Log:
Borrows some modules to run "import pickle".
Modified: pypy/trunk/src/pypy/module/sysinterp.py
==============================================================================
--- pypy/trunk/src/pypy/module/sysinterp.py (original)
+++ pypy/trunk/src/pypy/module/sysinterp.py Wed Mar 24 11:00:12 2004
@@ -40,7 +40,8 @@
# steal them from Python.
for fn in ['posix', 'nt', 'os2', 'mac', 'ce', 'riscos',
'cStringIO', 'itertools', 'math',
- '_random', '_sre', 'time']:
+ '_random', '_sre', 'time',
+ 'marshal', 'struct', 'binascii']:
if fn not in builtin_modules:
try:
builtin_modules[fn] = hack_cpython_module(fn)
More information about the Pypy-commit
mailing list