diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-26 06:00:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 06:00:49 (GMT) |
commit | ddb961d2abe5d5fde76d85b21a77e4e91e0043ad (patch) | |
tree | 2cd70e8cdb5a4b8c4b65e079b66a3492b26fec30 /Doc/library/os.rst | |
parent | 3ec9af75f6825a32f369ee182a388c365db241b6 (diff) | |
download | cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.zip cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.tar.gz cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.tar.bz2 |
bpo-35054: Add more index entries for symbols. (GH-10064)
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 75d473c..b174b9d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4086,6 +4086,7 @@ are defined for all platforms. Higher-level operations on pathnames are defined in the :mod:`os.path` module. +.. index:: single: .; in pathnames .. data:: curdir The constant string used by the operating system to refer to the current @@ -4093,6 +4094,7 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. :mod:`os.path`. +.. index:: single: ..; in pathnames .. data:: pardir The constant string used by the operating system to refer to the parent @@ -4100,6 +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) .. data:: sep The character used by the operating system to separate pathname components. @@ -4109,6 +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 .. data:: altsep An alternative character used by the operating system to separate pathname @@ -4117,12 +4122,14 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. :mod:`os.path`. +.. index:: single: .; 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) .. data:: pathsep The character conventionally used by the operating system to separate search |