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/sys.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/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index d85eadb..721edd1 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -250,8 +250,9 @@ always available. Print low-level information to stderr about the state of CPython's memory allocator. - If Python is :option:`configured --with-pydebug <--with-pydebug>`, it also - performs some expensive internal consistency checks. + If Python is `built in debug mode <debug-build>` (:option:`configure + --with-pydebug option <--with-pydebug>`), it also performs some expensive + internal consistency checks. .. versionadded:: 3.3 |