Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.

Changed unicode(i) to return a true Unicode object when i is an instance of
a unicode subclass.  Added PyUnicode_CheckExact macro.
This commit is contained in:
Tim Peters 2001-09-11 03:07:38 +00:00
parent 0ebeb584a4
commit 78e0fc74bc
3 changed files with 16 additions and 6 deletions

View File

@ -61,6 +61,7 @@ Copyright (c) Corporation for National Research Initiatives.
#ifndef Py_USING_UNICODE #ifndef Py_USING_UNICODE
#define PyUnicode_Check(op) 0 #define PyUnicode_Check(op) 0
#define PyUnicode_CheckExact(op) 0
#else #else
@ -373,6 +374,7 @@ typedef struct {
extern DL_IMPORT(PyTypeObject) PyUnicode_Type; extern DL_IMPORT(PyTypeObject) PyUnicode_Type;
#define PyUnicode_Check(op) PyObject_TypeCheck(op, &PyUnicode_Type) #define PyUnicode_Check(op) PyObject_TypeCheck(op, &PyUnicode_Type)
#define PyUnicode_CheckExact(op) ((op)->ob_type == &PyUnicode_Type)
/* Fast access macros */ /* Fast access macros */
#define PyUnicode_GET_SIZE(op) \ #define PyUnicode_GET_SIZE(op) \

View File

@ -1443,7 +1443,7 @@ def rev(self):
verify(str(s).__class__ is str) verify(str(s).__class__ is str)
s = madstring("\x00" * 5) s = madstring("\x00" * 5)
#XXX verify(str(s) == "\x00" ( 5) #XXX verify(str(s) == "\x00" * 5)
verify(str(s).__class__ is str) verify(str(s).__class__ is str)
class madunicode(unicode): class madunicode(unicode):
@ -1460,7 +1460,7 @@ def rev(self):
verify(u.rev().rev() == madunicode(u"ABCDEF")) verify(u.rev().rev() == madunicode(u"ABCDEF"))
u = madunicode(u"12345") u = madunicode(u"12345")
verify(unicode(u) == u"12345") verify(unicode(u) == u"12345")
#XXX verify(unicode(u).__class__ is unicode) verify(unicode(u).__class__ is unicode)
def all(): def all():
lists() lists()

View File

@ -429,8 +429,16 @@ PyObject *PyUnicode_FromEncodedObject(register PyObject *obj,
"decoding Unicode is not supported"); "decoding Unicode is not supported");
return NULL; return NULL;
} }
if (PyUnicode_CheckExact(obj)) {
Py_INCREF(obj); Py_INCREF(obj);
v = obj; v = obj;
}
else {
/* For a subclass of unicode, return a true unicode object
with the same string value. */
v = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(obj),
PyUnicode_GET_SIZE(obj));
}
goto done; goto done;
} }
else if (PyString_Check(obj)) { else if (PyString_Check(obj)) {