diff options
author | Victor Stinner <vstinner@python.org> | 2021-04-12 21:27:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 21:27:35 (GMT) |
commit | 85918e4ab6e9410008aef6dedf000d24b3e120ea (patch) | |
tree | e4c282aec978ebb45778dbd3897978aa42f4cea7 /Doc/library/decimal.rst | |
parent | 20ac34772aa9805ccbf082e700f2b033291ff5d2 (diff) | |
download | cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.zip cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.tar.gz cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.tar.bz2 |
bpo-43774: Add more links to configure options (GH-25363)
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 35a263a..e759c5c 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -1484,8 +1484,8 @@ are also included in the pure Python version for compatibility. .. data:: HAVE_CONTEXTVAR - The default value is ``True``. If Python is :option:`configured with - --without-decimal-contextvar <--without-decimal-contextvar>`, + The default value is ``True``. If Python is :option:`configured using + the --without-decimal-contextvar option <--without-decimal-contextvar>`, the C version uses a thread-local rather than a coroutine-local context and the value is ``False``. This is slightly faster in some nested context scenarios. |