These comments aren't relevant for 3k. They were to support modules compiled

before the PyNumberMethods were added which was 2.0 I think.
This commit is contained in:
Neal Norwitz 2007-02-25 23:47:19 +00:00
parent 5dc0d9708c
commit 025488b2b0
1 changed files with 0 additions and 4 deletions

View File

@ -565,14 +565,12 @@ PyNumber_Multiply(PyObject *v, PyObject *w)
PyObject * PyObject *
PyNumber_FloorDivide(PyObject *v, PyObject *w) PyNumber_FloorDivide(PyObject *v, PyObject *w)
{ {
/* XXX tp_flags test */
return binary_op(v, w, NB_SLOT(nb_floor_divide), "//"); return binary_op(v, w, NB_SLOT(nb_floor_divide), "//");
} }
PyObject * PyObject *
PyNumber_TrueDivide(PyObject *v, PyObject *w) PyNumber_TrueDivide(PyObject *v, PyObject *w)
{ {
/* XXX tp_flags test */
return binary_op(v, w, NB_SLOT(nb_true_divide), "/"); return binary_op(v, w, NB_SLOT(nb_true_divide), "/");
} }
@ -649,7 +647,6 @@ INPLACE_BINOP(PyNumber_InPlaceSubtract, nb_inplace_subtract, nb_subtract, "-=")
PyObject * PyObject *
PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w) PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w)
{ {
/* XXX tp_flags test */
return binary_iop(v, w, NB_SLOT(nb_inplace_floor_divide), return binary_iop(v, w, NB_SLOT(nb_inplace_floor_divide),
NB_SLOT(nb_floor_divide), "//="); NB_SLOT(nb_floor_divide), "//=");
} }
@ -657,7 +654,6 @@ PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w)
PyObject * PyObject *
PyNumber_InPlaceTrueDivide(PyObject *v, PyObject *w) PyNumber_InPlaceTrueDivide(PyObject *v, PyObject *w)
{ {
/* XXX tp_flags test */
return binary_iop(v, w, NB_SLOT(nb_inplace_true_divide), return binary_iop(v, w, NB_SLOT(nb_inplace_true_divide),
NB_SLOT(nb_true_divide), "/="); NB_SLOT(nb_true_divide), "/=");
} }