Kaydet (Commit) b59cdd43 authored tarafından Guido van Rossum's avatar Guido van Rossum

Add separator

üst aa1e140f
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
# - os.name is either 'posix' or 'mac' # - os.name is either 'posix' or 'mac'
# - os.curdir is a string representing the current directory ('.' or ':') # - os.curdir is a string representing the current directory ('.' or ':')
# - os.pardir is a string representing the parent directory ('..' or '::') # - os.pardir is a string representing the parent directory ('..' or '::')
# - os.sep is the (or a most common) pathname separator ('/' or ':')
# Programs that import and use 'os' stand a better chance of being # Programs that import and use 'os' stand a better chance of being
# portable between different platforms. Of course, they must then # portable between different platforms. Of course, they must then
...@@ -20,6 +21,7 @@ try: ...@@ -20,6 +21,7 @@ try:
name = 'posix' name = 'posix'
curdir = '.' curdir = '.'
pardir = '..' pardir = '..'
sep = '/'
import posixpath import posixpath
path = posixpath path = posixpath
del posixpath del posixpath
...@@ -28,6 +30,7 @@ except ImportError: ...@@ -28,6 +30,7 @@ except ImportError:
name = 'mac' name = 'mac'
curdir = ':' curdir = ':'
pardir = '::' pardir = '::'
sep = ':'
import macpath import macpath
path = macpath path = macpath
del macpath del macpath
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment