From ed5b9b3fd5f49e61687a7e04e1e2509b8b6c9d56 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 5 Dec 2008 07:45:54 +0000 Subject: [PATCH] #4401: Re-add os.extsep. --- Lib/os.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/os.py b/Lib/os.py index 2fdf6688a94..5a020d32279 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -7,6 +7,7 @@ - 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 (always '.') - 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') @@ -102,7 +103,8 @@ def _get_exports_list(module): raise ImportError('no os specific module found') sys.modules['os.path'] = path -from os.path import curdir, pardir, sep, pathsep, defpath, altsep, devnull +from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, + devnull) del _names