diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 91531e0..a263bda 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -748,7 +748,7 @@ try_3way_to_rich_compare(PyObject *v, PyObject *w, int op) return result; } -PyObject * +static PyObject * do_richcmp(PyObject *v, PyObject *w, int op) { PyObject *res; |