diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-28 11:41:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 11:41:26 (GMT) |
commit | 913876d824d969f8c7431e8a9d4610a9a11a786e (patch) | |
tree | f98ec4ccbb5f2db38d2ea62e1583745db2957c0b /Doc/library/os.rst | |
parent | 95f68b10d5c9852ef4dcf5b9f2ae15fdf74e8f1c (diff) | |
download | cpython-913876d824d969f8c7431e8a9d4610a9a11a786e.zip cpython-913876d824d969f8c7431e8a9d4610a9a11a786e.tar.gz cpython-913876d824d969f8c7431e8a9d4610a9a11a786e.tar.bz2 |
bpo-35054: Add yet more index entries for symbols. (GH-10121)
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b174b9d..6a9fe36 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4086,7 +4086,7 @@ are defined for all platforms. Higher-level operations on pathnames are defined in the :mod:`os.path` module. -.. index:: single: .; in pathnames +.. index:: single: . (dot); in pathnames .. data:: curdir The constant string used by the operating system to refer to the current @@ -4102,8 +4102,8 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. :mod:`os.path`. -.. index:: single: /; in pathnames -.. index:: single: \; in pathnames (Windows) +.. index:: single: / (slash); in pathnames +.. index:: single: \ (backslash); in pathnames (Windows) .. data:: sep The character used by the operating system to separate pathname components. @@ -4113,7 +4113,7 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. useful. Also available via :mod:`os.path`. -.. index:: single: /; in pathnames +.. index:: single: / (slash); in pathnames .. data:: altsep An alternative character used by the operating system to separate pathname @@ -4122,14 +4122,15 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. :mod:`os.path`. -.. index:: single: .; in pathnames +.. index:: single: . (dot); in pathnames .. data:: extsep The character which separates the base filename from the extension; for example, the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`. -.. index:: single: :; path separator (POSIX) +.. index:: single: : (colon); path separator (POSIX) + single: ; (semicolon) .. data:: pathsep The character conventionally used by the operating system to separate search |