]> granicus.if.org Git - python/commitdiff
Sort names alphabetically.
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Oct 2002 15:55:17 +0000 (15:55 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Oct 2002 15:55:17 +0000 (15:55 +0000)
Lib/rexec.py

index 4db442e2b1019d800d61ca7438a5c7f14a017d6c..a16d592cc41931c17bea1d6c4cab3aa1ee9f3c18 100644 (file)
@@ -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__')