2007-12-10 11:50:56 -04: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)
|
2024-10-08 11:25:24 -03:00
|
|
|
unicode_eq(PyObject *str1, PyObject *str2)
|
2007-12-10 11:50:56 -04:00
|
|
|
{
|
2024-10-08 11:25:24 -03:00
|
|
|
Py_ssize_t len = PyUnicode_GET_LENGTH(str1);
|
|
|
|
if (PyUnicode_GET_LENGTH(str2) != len) {
|
2011-09-28 02:41:54 -03:00
|
|
|
return 0;
|
2024-10-08 11:25:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int kind = PyUnicode_KIND(str1);
|
|
|
|
if (PyUnicode_KIND(str2) != kind) {
|
2011-09-28 02:41:54 -03:00
|
|
|
return 0;
|
2024-10-08 11:25:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
const void *data1 = PyUnicode_DATA(str1);
|
|
|
|
const void *data2 = PyUnicode_DATA(str2);
|
|
|
|
return (memcmp(data1, data2, len * kind) == 0);
|
2007-12-10 11:50:56 -04:00
|
|
|
}
|