diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-13 20:13:12 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-13 20:13:12 (GMT) |
commit | 1a9975014f7ddc583a2428fe47d0e17261f98b46 (patch) | |
tree | febd9464101af88429c179aac60f378a6ee680dc /Misc | |
parent | a974b3939f8f6239018fd0de44530244812191da (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 ----------------- |