diff options
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,7 @@ This exports: - 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 ':' or '\\') + - os.extsep is the extension separator ('.' or '/') - os.altsep is the alternate pathname separator (None or '/') - os.pathsep is the component separator used in $PATH etc - os.linesep is the line separator in text files ('\r' or '\n' or '\r\n') @@ -168,6 +169,12 @@ elif 'riscos' in _names: else: raise ImportError, 'no os specific module found' + +if sep=='.': + extsep = '/' +else: + extsep = '.' + __all__.append("path") del _names |