]> granicus.if.org Git - python/commitdiff
Tweak to Skip's checkin of patch 686397:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>
Mon, 17 Feb 2003 09:17:50 +0000 (09:17 +0000)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>
Mon, 17 Feb 2003 09:17:50 +0000 (09:17 +0000)
- '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'.

Lib/ntpath.py

index e39266bf21ce24511a277210241809a606277b2a..cf3c0be10f759e6dc0c8ed3a26fd6f45676be3d7 100644 (file)
@@ -23,13 +23,12 @@ extsep = '.'
 sep = '\\'
 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/ EMX
+    # OS/2 w/ VACPP
     altsep = '/'
-else:
-    defpath = '.;C:\\bin'
 
 # Normalize the case of a pathname and map slashes to backslashes.
 # Other normalizations (such as optimizing '../' away) are not done