Home
last modified time | relevance | path

Searched refs:right_uni (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dunicodeobject.c11588 PyObject *right_uni; in _PyUnicode_EqualToASCIIId() local
11607 right_uni = _PyUnicode_FromId(right); /* borrowed */ in _PyUnicode_EqualToASCIIId()
11608 if (right_uni == NULL) { in _PyUnicode_EqualToASCIIId()
11614 if (left == right_uni) in _PyUnicode_EqualToASCIIId()
11621 assert(_PyUnicode_HASH(right_uni) != -1); in _PyUnicode_EqualToASCIIId()
11623 if (hash != -1 && hash != _PyUnicode_HASH(right_uni)) { in _PyUnicode_EqualToASCIIId()
11628 return unicode_compare_eq(left, right_uni); in _PyUnicode_EqualToASCIIId()