diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-22 12:36:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-22 12:36:28 (GMT) |
commit | c7790ed1637ad688ea61decf45703f996f29584d (patch) | |
tree | 8184b598978495d1eab2dfdef4e15552af13770a /Lib | |
parent | 3017a7bbbf2046b93ac89fcbabadaf0a528e5ae1 (diff) | |
download | cpython-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 'Lib')
-rw-r--r-- | Lib/test/test_unicode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 973a008..368788f 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -1195,8 +1195,6 @@ class UnicodeTest( def test_format_subclass(self): class U(unicode): - def __str__(self): - return '__str__ overridden' def __unicode__(self): return u'__unicode__ overridden' u = U(u'xxx') |