summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:36:28 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:36:28 (GMT)
commitc7790ed1637ad688ea61decf45703f996f29584d (patch)
tree8184b598978495d1eab2dfdef4e15552af13770a /Misc
parent3017a7bbbf2046b93ac89fcbabadaf0a528e5ae1 (diff)
downloadcpython-c7790ed1637ad688ea61decf45703f996f29584d.zip
cpython-c7790ed1637ad688ea61decf45703f996f29584d.tar.gz
cpython-c7790ed1637ad688ea61decf45703f996f29584d.tar.bz2
Fix the NEWS about my last commit: an unicode subclass can now override the
__unicode__ method (and not the __str__ method). Simplify also the testcase.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12db4af..385e341 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,7 @@ What's New in Python 2.7 beta 1?
Core and Builtins
-----------------
-- Issue #1583863: An unicode subclass can now override the __str__ method
+- Issue #1583863: An unicode subclass can now override the __unicode__ method
- Issue #6474: Make error message from passing an inadequate number of keyword
arguments to a function correct.