summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-01-13 20:13:12 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-01-13 20:13:12 (GMT)
commit1a9975014f7ddc583a2428fe47d0e17261f98b46 (patch)
treefebd9464101af88429c179aac60f378a6ee680dc /Misc
parenta974b3939f8f6239018fd0de44530244812191da (diff)
downloadcpython-1a9975014f7ddc583a2428fe47d0e17261f98b46.zip
cpython-1a9975014f7ddc583a2428fe47d0e17261f98b46.tar.gz
cpython-1a9975014f7ddc583a2428fe47d0e17261f98b46.tar.bz2
Fix SF bug #667147, Segmentation fault printing str subclass
Fix infinite recursion which occurred when printing an object whose __str__() returned self. Will backport
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fa1c8c..5f415d4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and builtins
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
-----------------