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

aimacintyre@users.sourceforge.net aimacintyre@users.sourceforge.net
Mon, 17 Feb 2003 01:17:54 -0800


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

Modified Files:
	ntpath.py 
Log Message:
Tweak to Skip's checkin of patch 686397:
- 'os2' references in ntpath.py relate to the VACPP port, not the EMX port;
- the VACPP port uses the same defpath as all other ntpath.py supported
  platforms except 'ce'.


Index: ntpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ntpath.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** ntpath.py	14 Feb 2003 19:35:30 -0000	1.55
--- ntpath.py	17 Feb 2003 09:17:50 -0000	1.56
***************
*** 24,34 ****
  pathsep = ';'
  altsep = None
  if 'ce' in sys.builtin_module_names:
      defpath = '\\Windows'
  elif 'os2' in sys.builtin_module_names:
!     # OS/2 w/ EMX
      altsep = '/'
- else:
-     defpath = '.;C:\\bin'
  
  # Normalize the case of a pathname and map slashes to backslashes.
--- 24,33 ----
  pathsep = ';'
  altsep = None
+ defpath = '.;C:\\bin'
  if 'ce' in sys.builtin_module_names:
      defpath = '\\Windows'
  elif 'os2' in sys.builtin_module_names:
!     # OS/2 w/ VACPP
      altsep = '/'
  
  # Normalize the case of a pathname and map slashes to backslashes.