set mac path separator to newline

This commit is contained in:
Guido van Rossum 1995-03-14 17:53:54 +00:00
parent 8c1688e132
commit 4c7fa4b774
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ _osindex = {
'posix': ('.', '..', '/', ':', ':/bin:/usr/bin'), 'posix': ('.', '..', '/', ':', ':/bin:/usr/bin'),
'dos': ('.', '..', '\\', ';', '.;C:\\bin'), 'dos': ('.', '..', '\\', ';', '.;C:\\bin'),
'nt': ('.', '..', '\\', ';', '.;C:\\bin'), 'nt': ('.', '..', '\\', ';', '.;C:\\bin'),
'mac': (':', '::', ':', ' ', ':'), 'mac': (':', '::', ':', '\n', ':'),
} }
# For freeze.py script: # For freeze.py script: