Skip to content

Commit

Permalink
Properly macroize
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Sep 4, 2024
1 parent 6d5be6d commit 245de9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/object.c
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
res = PyObject_RichCompare(v, w, op);
if (res == NULL)
return -1;
ok = PyObject_IsTrue(res);
ok = PyObject_IS_TRUE(res);
Py_DECREF(res);
return ok;
}
Expand Down

0 comments on commit 245de9a

Please sign in to comment.