diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-21 11:49:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 11:49:21 (GMT) |
commit | cc76113cf823ebff76d346665bbf1218a40ed4c8 (patch) | |
tree | 78304581e099caca96d7ab5104e8d63fbdc76cd2 /Doc/library/os.rst | |
parent | 6bde1b9f049e35e557068bd8c6034ee9c6fe61dc (diff) | |
download | cpython-cc76113cf823ebff76d346665bbf1218a40ed4c8.zip cpython-cc76113cf823ebff76d346665bbf1218a40ed4c8.tar.gz cpython-cc76113cf823ebff76d346665bbf1218a40ed4c8.tar.bz2 |
[3.11] gh-106892: Use roles :data: and :const: for referencing module variables (GH-106894) (GH-106955)
(cherry picked from commit d036db728ea3d54509cbad06df74e2d9a31fbec8)
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index dcd4d9e..31946f1 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -60,7 +60,7 @@ Notes on the availability of these functions: ``'java'``. .. seealso:: - :attr:`sys.platform` has a finer granularity. :func:`os.uname` gives + :data:`sys.platform` has a finer granularity. :func:`os.uname` gives system-dependent version information. The :mod:`platform` module provides detailed checks for the |