]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Record the latest fixes.
authorGuido van Rossum <guido@python.org>
Mon, 10 Jun 2002 21:40:01 +0000 (21:40 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 10 Jun 2002 21:40:01 +0000 (21:40 +0000)
Misc/NEWS

index cd2ad39150040ef1f685398141c963da67954562..1e81675ba43c055473ead39231409e84bfa78841 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,9 @@ Release date: dd-mmm-2002
 
 Core and builtins
 
+- Cycles going through the __class__ link of a new-style instance are
+  now detected by the garbage collector.
+
 - Classes using __slots__ are now properly garbage collected.
   [SF bug 519621]
 
@@ -27,6 +30,12 @@ Core and builtins
 
 Library
 
+- Some fixes in the copy module: when an object is copied through its
+  __reduce__ method, there was no check for a __setstate__ method on
+  the result [SF patch 565085]; deepcopy should treat instances of
+  custom metaclasses the same way it treats instances of type 'type'
+  [SF patch 560794].
+
 
 C API