summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:53:14 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-22 12:53:14 (GMT)
commitabdb21a3a89e0fed89e361d86990c90a998ac9ec (patch)
treec0115422ade6453f6a974216b51d11b3b37981e7
parent6a11edb533c184dad3c391a5a68e6a8ea64ef961 (diff)
downloadcpython-abdb21a3a89e0fed89e361d86990c90a998ac9ec.zip
cpython-abdb21a3a89e0fed89e361d86990c90a998ac9ec.tar.gz
cpython-abdb21a3a89e0fed89e361d86990c90a998ac9ec.tar.bz2
Merged revisions 79281 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r79281 | victor.stinner | 2010-03-22 13:50:40 +0100 (lun., 22 mars 2010) | 16 lines Merged revisions 79278,79280 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79278 | victor.stinner | 2010-03-22 13:24:37 +0100 (lun., 22 mars 2010) | 2 lines Issue #1583863: An unicode subclass can now override the __str__ method ........ r79280 | victor.stinner | 2010-03-22 13:36:28 +0100 (lun., 22 mars 2010) | 5 lines 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. ........ ................
-rw-r--r--Lib/test/test_unicode.py8
-rw-r--r--Misc/NEWS5
-rw-r--r--Objects/unicodeobject.c2
3 files changed, 14 insertions, 1 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index 7f87b43..6e4f048 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -1223,6 +1223,14 @@ class UnicodeTest(
self.assertRaises(MemoryError, alloc)
self.assertRaises(MemoryError, alloc)
+ def test_format_subclass(self):
+ class S(str):
+ def __str__(self):
+ return '__str__ overridden'
+ s = S('xxx')
+ self.assertEquals("%s" % s, '__str__ overridden')
+ self.assertEquals("{}".format(s), '__str__ overridden')
+
def test_main():
support.run_unittest(__name__)
diff --git a/Misc/NEWS b/Misc/NEWS
index b8959df..3a9a641 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,11 @@ What's New in Python 3.1.3?
*Release date: 20XX-XX-XX*
+Core and Builtins
+-----------------
+
+- Issue #1583863: An str subclass can now override the __str__ method
+
Library
-------
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 5fd2372..2ccec90 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9308,7 +9308,7 @@ PyObject *PyUnicode_Format(PyObject *format,
case 's':
case 'r':
case 'a':
- if (PyUnicode_Check(v) && c == 's') {
+ if (PyUnicode_CheckExact(v) && c == 's') {
temp = v;
Py_INCREF(temp);
}