summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-11-19 03:08:32 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-11-19 03:08:32 (GMT)
commit32019774b98d0b140cec1f16e46e4268d0f2cf7f (patch)
tree1d447ddf2f345141c9d0039aa4e14d66b327c2a8 /Misc
parent36c3c027adcc4e92f189edadb5e36f621c3cdf8f (diff)
downloadcpython-32019774b98d0b140cec1f16e46e4268d0f2cf7f.zip
cpython-32019774b98d0b140cec1f16e46e4268d0f2cf7f.tar.gz
cpython-32019774b98d0b140cec1f16e46e4268d0f2cf7f.tar.bz2
fix __bytes__ handling here in py3x
Merged revisions 76395 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76395 | benjamin.peterson | 2009-11-18 21:00:02 -0600 (Wed, 18 Nov 2009) | 1 line #5037 proxy __unicode__ correctly ........
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 2d47c04..bc1d91a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ C-API
Library
-------
+- Issue #5037: Proxy the __unicode__ special method instead to __unicode__
+ instead of __str__.
+
- Issue #7341: Close the internal file object in the TarFile constructor in
case of an error.