diff --git a/Objects/intobject.c b/Objects/intobject.c index eaf869f7bc5..775213c2d3a 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -532,6 +532,12 @@ int_classic_div(PyIntObject *x, PyIntObject *y) } } +static PyObject * +int_true_divide(PyObject *v, PyObject *w) +{ + return PyFloat_Type.tp_as_number->nb_true_divide(v, w); +} + static PyObject * int_mod(PyIntObject *x, PyIntObject *y) { @@ -767,12 +773,6 @@ int_or(PyIntObject *v, PyIntObject *w) return PyInt_FromLong(a | b); } -static PyObject * -int_true_divide(PyObject *v, PyObject *w) -{ - return PyFloat_Type.tp_as_number->nb_true_divide(v, w); -} - static PyObject * int_int(PyIntObject *v) {