summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-12-24 22:25:17 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-12-24 22:25:17 (GMT)
commitf84caf4edae9d1357db6afec75b042caf54cf3f5 (patch)
tree967c31d1ac2e16935d07036e560f744de51d5f7f /Misc
parentdb69f01ea909ccd5209f0e2cd532263760f67ce7 (diff)
downloadcpython-f84caf4edae9d1357db6afec75b042caf54cf3f5.zip
cpython-f84caf4edae9d1357db6afec75b042caf54cf3f5.tar.gz
cpython-f84caf4edae9d1357db6afec75b042caf54cf3f5.tar.bz2
#6108: unicode(exception) and str(exception) should return the same message
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 1ed3421..bcb2060 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 2?
Core and Builtins
-----------------
+- Issue #6108: unicode(exception) and str(exception) should return the same
+ message when only __str__ (and not __unicode__) is overridden in the subclass.
+
- Issue #6834: replace the implementation for the 'python' and 'pythonw'
executables on OSX.