Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dhamt.c770 int comp_err = PyObject_RichCompareBool(key, key_or_null, Py_EQ); in hamt_node_bitmap_assoc() local
771 if (comp_err < 0) { /* exception in __eq__ */ in hamt_node_bitmap_assoc()
774 if (comp_err == 1) { /* key == key_or_null */ in hamt_node_bitmap_assoc()
1118 int comp_err; in hamt_node_bitmap_find() local
1144 comp_err = PyObject_RichCompareBool(key, key_or_null, Py_EQ); in hamt_node_bitmap_find()
1145 if (comp_err < 0) { /* exception in __eq__ */ in hamt_node_bitmap_find()
1148 if (comp_err == 1) { /* key == key_or_null */ in hamt_node_bitmap_find()