[Python-checkins] python/dist/src/Doc/lib libgc.tex,1.16,1.17

loewis at users.sourceforge.net loewis at users.sourceforge.net
Mon Mar 28 17:29:31 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24144

Modified Files:
	libgc.tex 
Log Message:
Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.
Will backport to 2.4.


Index: libgc.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgc.tex,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- libgc.tex	7 Jan 2005 00:49:17 -0000	1.16
+++ libgc.tex	28 Mar 2005 15:29:28 -0000	1.17
@@ -14,7 +14,9 @@
 can disable the collector if you are sure your program does not create
 reference cycles.  Automatic collection can be disabled by calling
 \code{gc.disable()}.  To debug a leaking program call
-\code{gc.set_debug(gc.DEBUG_LEAK)}.
+\code{gc.set_debug(gc.DEBUG_LEAK)}. Notice that this includes 
+\code{gc.DEBUG_SAVEALL}, causing garbage-collected objects to be
+saved in gc.garbage for inspection.
 
 The \module{gc} module provides the following functions:
 



More information about the Python-checkins mailing list