summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:24:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:24:37 (GMT)
commit95affc44495806a540f4d997d13361cc388b1a7e (patch)
treeeb554a0bbbf05e8570190b42d877c1ae31c68a81 /Misc
parenteef159bd176ffeaae7cdc8450e3d6168fbfe4a59 (diff)
downloadcpython-95affc44495806a540f4d997d13361cc388b1a7e.zip
cpython-95affc44495806a540f4d997d13361cc388b1a7e.tar.gz
cpython-95affc44495806a540f4d997d13361cc388b1a7e.tar.bz2
Issue #1583863: An unicode subclass can now override the __str__ method
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f93486e..dd61f4f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 beta 1?
Core and Builtins
-----------------
+- Issue #1583863: An unicode subclass can now override the __str__ method
+
- Issue #6474: Make error message from passing an inadequate number of keyword
arguments to a function correct.