diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-26 08:18:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 08:18:57 (GMT) |
commit | e825b4e1a9bbe1d4c561f4cbbe6857653ef13a15 (patch) | |
tree | d825132fe89fdd3c0c11a0f98aba5b481377b2f5 /Doc/library/os.rst | |
parent | 3b87151879adb795c3c0372832c87da84ee93974 (diff) | |
download | cpython-e825b4e1a9bbe1d4c561f4cbbe6857653ef13a15.zip cpython-e825b4e1a9bbe1d4c561f4cbbe6857653ef13a15.tar.gz cpython-e825b4e1a9bbe1d4c561f4cbbe6857653ef13a15.tar.bz2 |
[3.6] bpo-35054: Add more index entries for symbols. (GH-10064). (GH-10119)
(cherry picked from commit ddb961d2abe5d5fde76d85b21a77e4e91e0043ad)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
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 e9ee514..c88ce23 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3867,6 +3867,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 @@ -3874,6 +3875,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 @@ -3881,6 +3883,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. @@ -3890,6 +3894,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 @@ -3898,12 +3903,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 |