# - 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
name = 'posix'
curdir = '.'
pardir = '..'
+ sep = '/'
import posixpath
path = posixpath
del posixpath
name = 'mac'
curdir = ':'
pardir = '::'
+ sep = ':'
import macpath
path = macpath
del macpath