[Python-checkins] python/dist/src/Misc NEWS,1.778,1.779

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 13 Jun 2003 12:28:50 -0700


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

Modified Files:
	NEWS 
Log Message:
SF patch 707900, fixing bug 702858, by Steven Taschuk.
Copying a new-style class that had a reference to itself didn't work.
(The same thing worked fine for old-style classes.)


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.778
retrieving revision 1.779
diff -C2 -d -r1.778 -r1.779
*** NEWS	9 Jun 2003 18:42:19 -0000	1.778
--- NEWS	13 Jun 2003 19:28:47 -0000	1.779
***************
*** 71,74 ****
--- 71,78 ----
  -------
  
+ - copy.py: applied SF patch 707900, fixing bug 702858, by Steven
+   Taschuk.  Copying a new-style class that had a reference to itself
+   didn't work.  (The same thing worked fine for old-style classes.)
+ 
  - difflib.py has two new functions:  context_diff() and unified_diff().