summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-03-28 22:23:24 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-03-28 22:23:24 (GMT)
commit9ddac3e166f0bc5b9226067c5dfc9f462318ce67 (patch)
treec9d46d11d0249c186e3c2aac9491838f22ec6211 /Lib/ntpath.py
parent7377bec6ae20e2a3b83f7084bc98af47e5bd3886 (diff)
downloadcpython-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.py2
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'