From 4c9fefcfe3de459301c548d64768d393242ae435 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Fri, 28 Mar 2003 22:31:41 +0000 Subject: backport fix for missing altsep in nt (bug 709428) --- Lib/os.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/os.py b/Lib/os.py index 8a46b41..b43f4dd 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -60,6 +60,7 @@ elif 'nt' in _names: linesep = '\r\n' curdir = '.'; pardir = '..'; sep = '\\'; pathsep = ';' defpath = '.;C:\\bin' + altsep = '/' from nt import * for i in ['_exit']: try: -- cgit v0.12