[Python-checkins] python/dist/src/Lib rexec.py,1.34.10.3,1.34.10.4

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Tue, 19 Nov 2002 11:22:28 -0800


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

Modified Files:
      Tag: release22-maint
	rexec.py 
Log Message:
Add more names to ok_sys_names, including hexversion; otherwise the
sre module and everything using it (e.g. re and glob) won't work.


Index: rexec.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/rexec.py,v
retrieving revision 1.34.10.3
retrieving revision 1.34.10.4
diff -C2 -d -r1.34.10.3 -r1.34.10.4
*** rexec.py	15 Sep 2002 06:08:27 -0000	1.34.10.3
--- rexec.py	19 Nov 2002 19:22:25 -0000	1.34.10.4
***************
*** 144,149 ****
                        'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
  
!     ok_sys_names = ('ps1', 'ps2', 'copyright', 'version',
!                     'platform', 'exit', 'maxint')
  
      nok_builtin_names = ('open', 'file', 'reload', '__import__')
--- 144,150 ----
                        'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
  
!     ok_sys_names = ('byteorder', 'copyright', 'exit', 'getdefaultencoding',
!                     'getrefcount', 'hexversion', 'maxint', 'maxunicode',
!                     'platform', 'ps1', 'ps2', 'version', 'version_info')
  
      nok_builtin_names = ('open', 'file', 'reload', '__import__')