[Python-checkins] python/dist/src/Doc/lib libgc.tex, 1.15.4.1, 1.15.4.2

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


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

Modified Files:
      Tag: release24-maint
	libgc.tex 
Log Message:
Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.


Index: libgc.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgc.tex,v
retrieving revision 1.15.4.1
retrieving revision 1.15.4.2
diff -u -d -r1.15.4.1 -r1.15.4.2
--- libgc.tex	7 Jan 2005 00:51:02 -0000	1.15.4.1
+++ libgc.tex	28 Mar 2005 15:29:29 -0000	1.15.4.2
@@ -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