[pypy-svn] r46999 - in pypy/dist/pypy: config doc/config
arigo at codespeak.net
arigo at codespeak.net
Fri Sep 28 12:14:26 CEST 2007
Author: arigo
Date: Fri Sep 28 12:14:26 2007
New Revision: 46999
Added:
pypy/dist/pypy/doc/config/objspace.usemodules.md5.txt
- copied, changed from r46987, pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt
pypy/dist/pypy/doc/config/objspace.usemodules.sha.txt
- copied, changed from r46987, pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt
Modified:
pypy/dist/pypy/config/pypyoption.py
pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt
Log:
The md5 and sha modules seem to work, enable them by default.
Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py (original)
+++ pypy/dist/pypy/config/pypyoption.py Fri Sep 28 12:14:26 2007
@@ -24,7 +24,7 @@
working_modules.update(dict.fromkeys(
["_socket", "unicodedata", "mmap", "fcntl", "rctime", "select",
"crypt", "signal", "dyngram", "readline", "termios", "zlib",
- "struct",
+ "struct", "md5", "sha",
]
))
Modified: pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt
==============================================================================
--- pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt (original)
+++ pypy/dist/pypy/doc/config/objspace.usemodules.struct.txt Fri Sep 28 12:14:26 2007
@@ -1,4 +1,5 @@
Use the built-in 'struct' module.
This module is expected to be working and is included by default.
-There is also a pure Python version in pypy/lib, but it is several
-orders of magnitude slower.
+There is also a pure Python version in pypy/lib which is used
+if the built-in is disabled, but it is several orders of magnitude
+slower.
More information about the Pypy-commit
mailing list