diff options
author | Skip Montanaro <skip@pobox.com> | 2003-03-28 22:23:24 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-03-28 22:23:24 (GMT) |
commit | 9ddac3e166f0bc5b9226067c5dfc9f462318ce67 (patch) | |
tree | c9d46d11d0249c186e3c2aac9491838f22ec6211 /Lib/ntpath.py | |
parent | 7377bec6ae20e2a3b83f7084bc98af47e5bd3886 (diff) | |
download | cpython-9ddac3e166f0bc5b9226067c5dfc9f462318ce67.zip cpython-9ddac3e166f0bc5b9226067c5dfc9f462318ce67.tar.gz cpython-9ddac3e166f0bc5b9226067c5dfc9f462318ce67.tar.bz2 |
make nt altsep forward slash - closes bug 709428
backport candidate
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index cf3c0be..fcb899b 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' |