diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-05-09 23:03:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 23:03:46 (GMT) |
commit | 6ed7c353b8ded48a9128413f35921ddc4e5b1065 (patch) | |
tree | afc47815078dc4b9eb7bc1ca47b97be3ebabcaac /Doc/using | |
parent | 22bddc864d3cc04ed218beb3b706ff1790db836a (diff) | |
download | cpython-6ed7c353b8ded48a9128413f35921ddc4e5b1065.zip cpython-6ed7c353b8ded48a9128413f35921ddc4e5b1065.tar.gz cpython-6ed7c353b8ded48a9128413f35921ddc4e5b1065.tar.bz2 |
gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509)
Remove the `PYTHONTHREADDEBUG` env var support.
Remove no-op dprintf() macro calls.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 9 | ||||
-rw-r--r-- | Doc/using/configure.rst | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 668459f..bc54ed8 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -999,15 +999,6 @@ conflict. Debug-mode variables ~~~~~~~~~~~~~~~~~~~~ -.. envvar:: PYTHONTHREADDEBUG - - If set, Python will print threading debug info into stdout. - - Need a :ref:`debug build of Python <debug-build>`. - - .. deprecated-removed:: 3.10 3.12 - - .. envvar:: PYTHONDUMPREFS If set, Python will dump objects and reference counts still alive after diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 4bf9b84..d61647f 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -278,7 +278,6 @@ Effects of a debug build: * Add ``d`` to :data:`sys.abiflags`. * Add :func:`sys.gettotalrefcount` function. * Add :option:`-X showrefcount <-X>` command line option. -* Add :envvar:`PYTHONTHREADDEBUG` environment variable. * Add support for the ``__lltrace__`` variable: enable low-level tracing in the bytecode evaluation loop if the variable is defined. * Install :ref:`debug hooks on memory allocators <default-memory-allocators>` |