summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2016-10-02 01:12:35 (GMT)
committerNed Deily <nad@python.org>2016-10-02 01:12:35 (GMT)
commitbf090e31ad702c8f4f5c4e9f9574d37f287421cc (patch)
treea50e1bf609645b4433a43c9620ac7aa98821f16c /Lib/os.py
parentc6ef503b4972cb02f3fb9ac700636b8882edb11a (diff)
downloadcpython-bf090e31ad702c8f4f5c4e9f9574d37f287421cc.zip
cpython-bf090e31ad702c8f4f5c4e9f9574d37f287421cc.tar.gz
cpython-bf090e31ad702c8f4f5c4e9f9574d37f287421cc.tar.bz2
Issue #28324: Remove vestigal MacOS 9 references in os.py docstring.
Patch by Chi Hsuan Yen.
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 7379dad..3e5f8cf 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -4,9 +4,9 @@ This exports:
- all functions from posix or nt, e.g. unlink, stat, etc.
- os.path is either posixpath or ntpath
- os.name is either 'posix' or 'nt'
- - 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.curdir is a string representing the current directory (always '.')
+ - os.pardir is a string representing the parent directory (always '..')
+ - os.sep is the (or a most common) pathname separator ('/' 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