[Python-checkins] python/dist/src/Lib rexec.py,1.41,1.42

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Fri, 11 Oct 2002 08:51:32 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv7153

Modified Files:
	rexec.py 
Log Message:
Add hexversion to list of safe sys names (SF bug 621447).

Bug fix candidate.


Index: rexec.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/rexec.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** rexec.py	15 Sep 2002 06:00:43 -0000	1.41
--- rexec.py	11 Oct 2002 15:51:29 -0000	1.42
***************
*** 144,148 ****
                        'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
  
!     ok_sys_names = ('ps1', 'ps2', 'copyright', 'version',
                      'platform', 'exit', 'maxint')
  
--- 144,148 ----
                        'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
  
!     ok_sys_names = ('ps1', 'ps2', 'copyright', 'version', 'hexversion',
                      'platform', 'exit', 'maxint')