summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-12-07 17:30:40 (GMT)
committerFred Drake <fdrake@acm.org>2001-12-07 17:30:40 (GMT)
commit024e647972671cdced6fc3487740ca8580860416 (patch)
treec86618ec302cf2f887327230d726cc9bfa2f3d45 /Doc
parenta35e2cee323df2eb8ed4595f2ed6e7cf7b1630a4 (diff)
downloadcpython-024e647972671cdced6fc3487740ca8580860416.zip
cpython-024e647972671cdced6fc3487740ca8580860416.tar.gz
cpython-024e647972671cdced6fc3487740ca8580860416.tar.bz2
Added more information about reference counting limitations and the cycle
detector. This closes SF bug #484950.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/ext/extending.tex27
1 files changed, 27 insertions, 0 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex
index e78e1d1..7fe07b8 100644
--- a/Doc/ext/extending.tex
+++ b/Doc/ext/extending.tex
@@ -1232,6 +1232,33 @@ Maybe some day a sufficiently portable automatic garbage collector
will be available for C. Until then, we'll have to live with
reference counts.
+While Python uses the traditional reference counting implementation,
+it also offers a cycle detector that works to detect reference
+cycles. This allows applications to not worry about creating direct
+or indirect circular references; these are the weakness of garbage
+collection implemented using only reference counting. Reference
+cycles consist of objects which contain (possibly indirect) references
+themselves so that each object in the cycle has a reference count
+which is non-zero. Typical reference counting implementations are not
+able to reclaim the memory beloning to any objects in a reference
+cycle, or referenced from the objects in the cycle, even though there
+are no further references to the cycle itself.
+
+The cycle detector is able to detect garbage cycles and can reclaim
+them so long as there are no finalizers implemented in Python
+(\method{__del__()} methods). When there are such finalizers, the
+detector exposes the cycles through the \ulink{\module{gc}
+module}{../lib/module-gc.html}. The \module{gc} module also exposes
+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 compile time
+using the \longprogramopt{without-cycle-gc} option to the
+\program{configure} script on \UNIX{} platforms (including Mac OS X)
+or by removing the definition of \code{WITH_CYCLE_GC} in the
+\file{pyconfig.h} header on other platforms. If the cycle detector is
+disabled in this way, the \module{gc} module will not be available.
+
+
\subsection{Reference Counting in Python
\label{refcountsInPython}}