diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-21 11:49:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 11:49:39 (GMT) |
commit | 84e52171b541ecc01f2d738cf82f5d4199a4bce7 (patch) | |
tree | d71b78f93d8cc1c1baa5c45435a75b130dfed5d2 /Doc/using | |
parent | 4be0f157ea7000ded8d4a3ae818a74b026f1fed3 (diff) | |
download | cpython-84e52171b541ecc01f2d738cf82f5d4199a4bce7.zip cpython-84e52171b541ecc01f2d738cf82f5d4199a4bce7.tar.gz cpython-84e52171b541ecc01f2d738cf82f5d4199a4bce7.tar.bz2 |
[3.12] gh-106909: Use role :const: for referencing module constants (GH-106910) (GH-106956)
(cherry picked from commit 4b9948617f91175783609769aa6160e5b49b9ccc)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index fbe280d..924e73d 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -97,7 +97,7 @@ General Options .. cmdoption:: --with-tzpath=<list of absolute paths separated by pathsep> - Select the default time zone search path for :data:`zoneinfo.TZPATH`. + Select the default time zone search path for :const:`zoneinfo.TZPATH`. See the :ref:`Compile-time configuration <zoneinfo_data_compile_time_config>` of the :mod:`zoneinfo` module. @@ -112,7 +112,7 @@ General Options Build the ``_decimal`` extension module using a thread-local context rather than a coroutine-local context (default), see the :mod:`decimal` module. - See :data:`decimal.HAVE_CONTEXTVAR` and the :mod:`contextvars` module. + See :const:`decimal.HAVE_CONTEXTVAR` and the :mod:`contextvars` module. .. versionadded:: 3.9 |