File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 25
25
26
26
if 'posix' in _names :
27
27
name = 'posix'
28
+ linesep = '\n '
28
29
curdir = '.' ; pardir = '..' ; sep = '/' ; pathsep = ':'
29
30
defpath = ':/bin:/usr/bin'
30
31
from posix import *
37
38
del posixpath
38
39
elif 'nt' in _names :
39
40
name = 'nt'
41
+ linesep = '\r \n '
40
42
curdir = '.' ; pardir = '..' ; sep = '\\ ' ; pathsep = ';'
41
43
defpath = '.;C:\\ bin'
42
44
from nt import *
49
51
del ntpath
50
52
elif 'dos' in _names :
51
53
name = 'dos'
54
+ linesep = '\r \n '
52
55
curdir = '.' ; pardir = '..' ; sep = '\\ ' ; pathsep = ';'
53
56
defpath = '.;C:\\ bin'
54
57
from dos import *
61
64
del dospath
62
65
elif 'os2' in _names :
63
66
name = 'os2'
67
+ linesep = '\r \n '
64
68
curdir = '.' ; pardir = '..' ; sep = '\\ ' ; pathsep = ';'
65
69
defpath = '.;C:\\ bin'
66
70
from os2 import *
73
77
del ntpath
74
78
elif 'mac' in _names :
75
79
name = 'mac'
80
+ linesep = '\r '
76
81
curdir = ':' ; pardir = '::' ; sep = ':' ; pathsep = '\n '
77
82
defpath = ':'
78
83
from mac import *
You can’t perform that action at this time.
0 commit comments