[pypy-svn] r4798 - pypy/trunk/src/pypy/module

hpk at codespeak.net hpk at codespeak.net
Tue Jun 1 13:20:48 CEST 2004


Author: hpk
Date: Tue Jun  1 13:20:48 2004
New Revision: 4798

Modified:
   pypy/trunk/src/pypy/module/sysinterp.py
Log:
add operator module to the builtin modules 



Modified: pypy/trunk/src/pypy/module/sysinterp.py
==============================================================================
--- pypy/trunk/src/pypy/module/sysinterp.py	(original)
+++ pypy/trunk/src/pypy/module/sysinterp.py	Tue Jun  1 13:20:48 2004
@@ -38,7 +38,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',
-           'cStringIO', 'itertools', 'math',
+           'cStringIO', 'itertools', 'math', 'operator', 
            '_random', '_sre', 'time', 'imp', '_socket', 'errno',
            'marshal', 'struct', 'binascii']:
     if fn not in builtin_modules:



More information about the Pypy-commit mailing list