[Python-checkins] python/dist/src/Misc NEWS,1.612,1.613

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 13 Jan 2003 12:13:26 -0800


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

Modified Files:
	NEWS 
Log Message:
Fix SF bug #667147, Segmentation fault printing str subclass

Fix infinite recursion which occurred when printing an object
whose __str__() returned self.

Will backport


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.612
retrieving revision 1.613
diff -C2 -d -r1.612 -r1.613
*** NEWS	10 Jan 2003 23:29:48 -0000	1.612
--- NEWS	13 Jan 2003 20:13:12 -0000	1.613
***************
*** 19,22 ****
--- 19,25 ----
    arguments.
  
+ - Fixed crash when printing a subclass of str and __str__ returned self.
+   See SF bug #667147.
+ 
  Extension modules
  -----------------