commit | 1a9975014f7ddc583a2428fe47d0e17261f98b46 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Mon Jan 13 20:13:12 2003 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Mon Jan 13 20:13:12 2003 +0000 |
tree | febd9464101af88429c179aac60f378a6ee680dc | |
parent | a974b3939f8f6239018fd0de44530244812191da [diff] |
Fix SF bug #667147, Segmentation fault printing str subclass Fix infinite recursion which occurred when printing an object whose __str__() returned self. Will backport
diff --git a/Misc/NEWS b/Misc/NEWS index 1fa1c8c..5f415d4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Passing None is semantically identical to calling sort() with no arguments. +- Fixed crash when printing a subclass of str and __str__ returned self. + See SF bug #667147. + Extension modules -----------------