diff options
author | Guido van Rossum <guido@python.org> | 1992-04-06 14:03:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-04-06 14:03:45 (GMT) |
commit | b59cdd43562b6713fcf1227067ddde77a3868ac8 (patch) | |
tree | 0fa0912d2d814fad55ce7f470bd50b0eef84ffbe /Lib | |
parent | aa1e140f033c2efdfbae103c15d25b1a820957b2 (diff) | |
download | cpython-b59cdd43562b6713fcf1227067ddde77a3868ac8.zip cpython-b59cdd43562b6713fcf1227067ddde77a3868ac8.tar.gz cpython-b59cdd43562b6713fcf1227067ddde77a3868ac8.tar.bz2 |
Add separator
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/os.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,7 @@ # - os.name is either 'posix' or 'mac' # - os.curdir is a string representing the current 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 # portable between different platforms. Of course, they must then @@ -20,6 +21,7 @@ try: name = 'posix' curdir = '.' pardir = '..' + sep = '/' import posixpath path = posixpath del posixpath @@ -28,6 +30,7 @@ except ImportError: name = 'mac' curdir = ':' pardir = '::' + sep = ':' import macpath path = macpath del macpath |