summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-04-12 15:58:45 (GMT)
committerGitHub <noreply@github.com>2021-04-12 15:58:45 (GMT)
commit2459b92a4db69d9b14d0a86a9b81cc075894e910 (patch)
treeee786ce118f60b3e0e70092f1784de2306af7123
parent8c14f5a787b21d5a1eae5d5ee981431d1c0e055f (diff)
downloadcpython-2459b92a4db69d9b14d0a86a9b81cc075894e910.zip
cpython-2459b92a4db69d9b14d0a86a9b81cc075894e910.tar.gz
cpython-2459b92a4db69d9b14d0a86a9b81cc075894e910.tar.bz2
bpo-43774: Remove --without-cycle-gc doc (GH-25364)
The configure --without-cycle-gc option has been removed in Python 2.3 by the commit cccd1e72481106b0a373117f32fda6261f3141a7. It's now time to remove the last reference to it in the documentation.
-rw-r--r--Doc/extending/extending.rst7
1 files changed, 1 insertions, 6 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst
index bc85a05..561d1c6 100644
--- a/Doc/extending/extending.rst
+++ b/Doc/extending/extending.rst
@@ -911,12 +911,7 @@ the cycle itself.
The cycle detector is able to detect garbage cycles and can reclaim them.
The :mod:`gc` module exposes a way to run the detector (the
:func:`~gc.collect` function), as well as configuration
-interfaces and the ability to disable the detector at runtime. The cycle
-detector is considered an optional component; though it is included by default,
-it can be disabled at build time using the :option:`!--without-cycle-gc` option
-to the :program:`configure` script on Unix platforms (including Mac OS X). If
-the cycle detector is disabled in this way, the :mod:`gc` module will not be
-available.
+interfaces and the ability to disable the detector at runtime.
.. _refcountsinpython: