diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-10-11 15:55:17 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-10-11 15:55:17 (GMT) |
commit | a325c42b2dfa38a9ecd2151d497d3ffc660ad07a (patch) | |
tree | 0d939ea9843f93087ef839d210d5893b08f56c2d | |
parent | 69dc0c5bf5aff342afb4fa35c44dc726e2cd772f (diff) | |
download | cpython-a325c42b2dfa38a9ecd2151d497d3ffc660ad07a.zip cpython-a325c42b2dfa38a9ecd2151d497d3ffc660ad07a.tar.gz cpython-a325c42b2dfa38a9ecd2151d497d3ffc660ad07a.tar.bz2 |
Sort names alphabetically.
-rw-r--r-- | Lib/rexec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/rexec.py b/Lib/rexec.py index 4db442e..a16d592 100644 --- a/Lib/rexec.py +++ b/Lib/rexec.py @@ -143,8 +143,8 @@ class RExec(ihooks._Verbose): 'stat', 'times', 'uname', 'getpid', 'getppid', 'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid') - ok_sys_names = ('ps1', 'ps2', 'copyright', 'version', 'hexversion', - 'platform', 'exit', 'maxint') + ok_sys_names = ('copyright', 'exit', 'hexversion', 'version', + 'maxint', 'platform', 'ps1', 'ps2') nok_builtin_names = ('open', 'file', 'reload', '__import__') |