diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-22 18:19:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-22 18:19:16 (GMT) |
commit | a2d848e99c3369d7a7ca7a429bd7ac258411fb63 (patch) | |
tree | a72b60e51a81b7c578c2ad99e8846457b957d0fc /Lib/rexec.py | |
parent | f66cb5d0eb79083ceaa4b6a1eac6928ce2ebb1e7 (diff) | |
download | cpython-a2d848e99c3369d7a7ca7a429bd7ac258411fb63.zip cpython-a2d848e99c3369d7a7ca7a429bd7ac258411fb63.tar.gz cpython-a2d848e99c3369d7a7ca7a429bd7ac258411fb63.tar.bz2 |
Add sha and _sre to the list of allowed built-in modules.
Diffstat (limited to 'Lib/rexec.py')
-rw-r--r-- | Lib/rexec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rexec.py b/Lib/rexec.py index cb397ce..307c038 100644 --- a/Lib/rexec.py +++ b/Lib/rexec.py @@ -123,7 +123,7 @@ class RExec(ihooks._Verbose): 'cmath', 'errno', 'imageop', 'marshal', 'math', 'md5', 'operator', 'parser', 'regex', 'pcre', 'rotor', 'select', - 'strop', 'struct', 'time') + 'sha', '_sre', 'strop', 'struct', 'time') ok_posix_names = ('error', 'fstat', 'listdir', 'lstat', 'readlink', 'stat', 'times', 'uname', 'getpid', 'getppid', |