summaryrefslogtreecommitdiffstats
path: root/Objects
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 /Objects
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 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 113a460..82af3a2 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -8466,7 +8466,7 @@ PyObject *PyUnicode_Format(PyObject *format,
case 's':
case 'r':
- if (PyUnicode_Check(v) && c == 's') {
+ if (PyUnicode_CheckExact(v) && c == 's') {
temp = v;
Py_INCREF(temp);
}