diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-14 21:19:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-14 21:19:08 (GMT) |
commit | dda7dcb3f76710371183af51428427796e7b9c64 (patch) | |
tree | 83309b6bdf6e3011782c8689ca13fed574a7221d /Doc | |
parent | 0655745ab02c04f37e3c68d78048be11164b43e5 (diff) | |
download | cpython-dda7dcb3f76710371183af51428427796e7b9c64.zip cpython-dda7dcb3f76710371183af51428427796e7b9c64.tar.gz cpython-dda7dcb3f76710371183af51428427796e7b9c64.tar.bz2 |
Add a missing "cycle".
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libgc.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libgc.tex b/Doc/lib/libgc.tex index 6d1b519..b332fe2 100644 --- a/Doc/lib/libgc.tex +++ b/Doc/lib/libgc.tex @@ -109,7 +109,7 @@ removed from \var{garbage} too. For example, after breaking cycles, do \code{del gc.garbage[:]} to empty the list. It's generally better to avoid the issue by not creating cycles containing objects with \method{__del__()} methods, and \var{garbage} can be examined in that -case to verify that no such are being created. +case to verify that no such cycles are being created. If \constant{DEBUG_SAVEALL} is set, then all unreachable objects will be added to this list rather than freed. |