From a2d848e99c3369d7a7ca7a429bd7ac258411fb63 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 22 Jun 2001 18:19:16 +0000 Subject: [PATCH] Add sha and _sre to the list of allowed built-in modules. --- Lib/rexec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/rexec.py b/Lib/rexec.py index cb397ce75c9..307c03832de 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',