diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c index 2c033f8..f952405 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -835,6 +835,7 @@ PyObject_RichCompare(PyObject *v, PyObject *w, int op) return res; } +/* Return -1 if error; 1 if v op w; 0 if not (v op w). */ int PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) { |