From: Skip Montanaro Date: Fri, 28 Mar 2003 22:23:24 +0000 (+0000) Subject: make nt altsep forward slash - closes bug 709428 X-Git-Tag: v2.3c1~1345 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ddac3e166f0bc5b9226067c5dfc9f462318ce67;p=thirdparty%2FPython%2Fcpython.git make nt altsep forward slash - closes bug 709428 backport candidate --- diff --git a/Lib/ntpath.py b/Lib/ntpath.py index cf3c0be10f75..fcb899bd8ff0 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -22,7 +22,7 @@ pardir = '..' extsep = '.' sep = '\\' pathsep = ';' -altsep = None +altsep = '/' defpath = '.;C:\\bin' if 'ce' in sys.builtin_module_names: defpath = '\\Windows'