| 166 | /// Equivalent to obj == other in Python |
| 167 | bool equal(object_api const &other) const { return rich_compare(other, Py_EQ); } |
| 168 | bool not_equal(object_api const &other) const { return rich_compare(other, Py_NE); } |
| 169 | bool operator<(object_api const &other) const { return rich_compare(other, Py_LT); } |
| 170 | bool operator<=(object_api const &other) const { return rich_compare(other, Py_LE); } |
| 171 | bool operator>(object_api const &other) const { return rich_compare(other, Py_GT); } |
nothing calls this directly
no outgoing calls
no test coverage detected