]> granicus.if.org Git - python/commitdiff
Finish SF patch 477059: __del__ on new classes vs. GC.
authorTim Peters <tim.peters@gmail.com>
Sat, 3 Nov 2001 19:57:21 +0000 (19:57 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 3 Nov 2001 19:57:21 +0000 (19:57 +0000)
Just doc and NEWS here, about the change in gc.garbage meaning.

Doc/lib/libgc.tex
Misc/NEWS

index cfd563cd4bdda304a7452fc94ad9a93ff110705c..589bcb14d083dfac8db2ebfdc297c3d0612abc4d 100644 (file)
@@ -83,7 +83,11 @@ The following variable is provided for read-only access:
 
 \begin{datadesc}{garbage}
 A list of objects which the collector found to be unreachable
-but could not be freed (uncollectable objects).  Objects that have
+but could not be freed (uncollectable objects).  By default, this list
+contains only objects with \method{__del__()} methods.\footnote{Prior to
+  Python 2.2, the list contained all instance objects in unreachable
+  cycles,  not only those with \method{__del__()} methods.}
+Objects that have
 \method{__del__()} methods and create part of a reference cycle cause
 the entire reference cycle to be uncollectable.  If
 \constant{DEBUG_SAVEALL} is set, then all unreachable objects will
index 02c4928f7d20f138236983ac859d6547577f47ab..c0f09ae09630b3dcafbbfb9146d6e8caf6e0ceff 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,11 @@ Core and builtins
 
 Extension modules
 
+- By default, the gc.garbage list now contains only those instances in
+  unreachable cycles that have __del__ methods; in 2.1 it contained all
+  instances in unreachable cycles.  "Instances" here has been generalized
+  to include instances of both new-style and old-style classes.
+
 - The socket module defines a new method for socket objects,
   sendall().  This is like send() but may make multiple calls to
   send() until all data has been sent.  Also, the socket function has