[Python-checkins] python/dist/src/Misc NEWS,1.420,1.421

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 10 Jun 2002 14:39:44 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv6259

Modified Files:
	NEWS 
Log Message:
Record the latest fixes.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.420
retrieving revision 1.421
diff -C2 -d -r1.420 -r1.421
*** NEWS	9 Jun 2002 13:33:54 -0000	1.420
--- NEWS	10 Jun 2002 21:39:42 -0000	1.421
***************
*** 7,10 ****
--- 7,13 ----
  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]
***************
*** 130,133 ****
--- 133,142 ----
  
  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].
  
  - Sockets now support timeout mode.  After s.settimeout(T), where T is