Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dhamt.c768 int comp_err = PyObject_RichCompareBool(key, key_or_null, Py_EQ); in hamt_node_bitmap_assoc() local
769 if (comp_err < 0) { /* exception in __eq__ */ in hamt_node_bitmap_assoc()
772 if (comp_err == 1) { /* key == key_or_null */ in hamt_node_bitmap_assoc()
1116 int comp_err; in hamt_node_bitmap_find() local
1142 comp_err = PyObject_RichCompareBool(key, key_or_null, Py_EQ); in hamt_node_bitmap_find()
1143 if (comp_err < 0) { /* exception in __eq__ */ in hamt_node_bitmap_find()
1146 if (comp_err == 1) { /* key == key_or_null */ in hamt_node_bitmap_find()