From: Guido van Rossum Date: Tue, 14 Mar 1995 17:53:54 +0000 (+0000) Subject: set mac path separator to newline X-Git-Tag: v1.2b4~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c7fa4b77458e646399f793885a98bd5dc30fd70;p=thirdparty%2FPython%2Fcpython.git set mac path separator to newline --- diff --git a/Lib/os.py b/Lib/os.py index 6de2d0b0c286..14dc908827fe 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -20,7 +20,7 @@ _osindex = { 'posix': ('.', '..', '/', ':', ':/bin:/usr/bin'), 'dos': ('.', '..', '\\', ';', '.;C:\\bin'), 'nt': ('.', '..', '\\', ';', '.;C:\\bin'), - 'mac': (':', '::', ':', ' ', ':'), + 'mac': (':', '::', ':', '\n', ':'), } # For freeze.py script: