]> granicus.if.org Git - python/commitdiff
Issue #28324: Remove vestigal MacOS 9 references in os.py docstring.
authorNed Deily <nad@python.org>
Sun, 2 Oct 2016 01:12:35 +0000 (21:12 -0400)
committerNed Deily <nad@python.org>
Sun, 2 Oct 2016 01:12:35 +0000 (21:12 -0400)
Patch by Chi Hsuan Yen.

Lib/os.py

index 7379dad41ac52f1006bab6f30939d6a4cb097aa0..3e5f8cfda75c454def9266cc8970d60e6f77abde 100644 (file)
--- 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