[Python-checkins] python/dist/src/Lib ntpath.py,1.56,1.57

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Fri, 28 Mar 2003 14:23:29 -0800


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

Modified Files:
	ntpath.py 
Log Message:
make nt altsep forward slash - closes bug 709428
backport candidate


Index: ntpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ntpath.py,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** ntpath.py	17 Feb 2003 09:17:50 -0000	1.56
--- ntpath.py	28 Mar 2003 22:23:24 -0000	1.57
***************
*** 23,27 ****
  sep = '\\'
  pathsep = ';'
! altsep = None
  defpath = '.;C:\\bin'
  if 'ce' in sys.builtin_module_names:
--- 23,27 ----
  sep = '\\'
  pathsep = ';'
! altsep = '/'
  defpath = '.;C:\\bin'
  if 'ce' in sys.builtin_module_names: