2007-12-10 15:50:56 +00:00
|
|
|
/* Fast unicode equal function optimized for dictobject.c and setobject.c */
|
|
|
|
|
|
|
|
/* Return 1 if two unicode objects are equal, 0 if not.
|
|
|
|
* unicode_eq() is called when the hash of two unicode objects is equal.
|
|
|
|
*/
|
|
|
|
Py_LOCAL_INLINE(int)
|
2022-05-12 05:48:38 +00:00
|
|
|
unicode_eq(PyObject *a, PyObject *b)
|
2007-12-10 15:50:56 +00:00
|
|
|
{
|
2011-09-28 05:41:54 +00:00
|
|
|
if (PyUnicode_GET_LENGTH(a) != PyUnicode_GET_LENGTH(b))
|
|
|
|
return 0;
|
|
|
|
if (PyUnicode_GET_LENGTH(a) == 0)
|
2010-05-09 15:52:27 +00:00
|
|
|
return 1;
|
2011-09-28 05:41:54 +00:00
|
|
|
if (PyUnicode_KIND(a) != PyUnicode_KIND(b))
|
|
|
|
return 0;
|
|
|
|
return memcmp(PyUnicode_1BYTE_DATA(a), PyUnicode_1BYTE_DATA(b),
|
2011-10-07 18:55:35 +00:00
|
|
|
PyUnicode_GET_LENGTH(a) * PyUnicode_KIND(a)) == 0;
|
2007-12-10 15:50:56 +00:00
|
|
|
}
|