Skip to content

bpo-43774: Document configure options #25283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
--without-decimal-contextvar option
  • Loading branch information
vstinner committed Apr 8, 2021
commit 8b54cfa79aa136e379cedfe0f9099d6a4d06aa2c
7 changes: 3 additions & 4 deletions Doc/using/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ General Options

.. versionadded:: 3.9

.. cmdoption:: --with-decimal-contextvar
.. cmdoption:: --without-decimal-contextvar

Build the ``_decimal`` extension module using a coroutine-local rather than
a thread-local context (use thread-local context by default), see the
:mod:`decimal` module.
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`.

Expand Down