]> granicus.if.org Git - python/commit
Replace PyUnicodeObject* by PyObject* where it was irrevelant
authorVictor Stinner <victor.stinner@haypocalc.com>
Sun, 23 Oct 2011 18:04:37 +0000 (20:04 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sun, 23 Oct 2011 18:04:37 +0000 (20:04 +0200)
commit9db1a8b69f13f884336556b61252f7ca271f2b76
treeedf3c6bad006095a92427022e3a47005c045c4ff
parent0d60e87ad6d992c8b989dfa1909a2fd8e853ee9a
Replace PyUnicodeObject* by PyObject* where it was irrevelant

A Unicode string can now be a PyASCIIObject, PyCompactUnicodeObject or
PyUnicodeObject. Aliasing a PyASCIIObject* or PyCompactUnicodeObject* to
PyUnicodeObject* is wrong
Include/unicodeobject.h
Objects/stringlib/find.h
Objects/unicodeobject.c