From 9ddac3e166f0bc5b9226067c5dfc9f462318ce67 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Fri, 28 Mar 2003 22:23:24 +0000 Subject: [PATCH] make nt altsep forward slash - closes bug 709428 backport candidate --- Lib/ntpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ntpath.py b/Lib/ntpath.py index cf3c0be10f7..fcb899bd8ff 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -22,7 +22,7 @@ extsep = '.' sep = '\\' pathsep = ';' -altsep = None +altsep = '/' defpath = '.;C:\\bin' if 'ce' in sys.builtin_module_names: defpath = '\\Windows'