From: Neal Norwitz Date: Sun, 25 Feb 2007 23:47:19 +0000 (+0000) Subject: These comments aren't relevant for 3k. They were to support modules compiled X-Git-Tag: v3.0a1~1184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=025488b2b056106fda97afcd1bd544244e6a083a;p=thirdparty%2FPython%2Fcpython.git These comments aren't relevant for 3k. They were to support modules compiled before the PyNumberMethods were added which was 2.0 I think. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 7016c2ebfe3c..dbd159a7030d 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -565,14 +565,12 @@ PyNumber_Multiply(PyObject *v, PyObject *w) PyObject * PyNumber_FloorDivide(PyObject *v, PyObject *w) { - /* XXX tp_flags test */ return binary_op(v, w, NB_SLOT(nb_floor_divide), "//"); } PyObject * PyNumber_TrueDivide(PyObject *v, PyObject *w) { - /* XXX tp_flags test */ return binary_op(v, w, NB_SLOT(nb_true_divide), "/"); } @@ -649,7 +647,6 @@ INPLACE_BINOP(PyNumber_InPlaceSubtract, nb_inplace_subtract, nb_subtract, "-=") PyObject * PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w) { - /* XXX tp_flags test */ return binary_iop(v, w, NB_SLOT(nb_inplace_floor_divide), NB_SLOT(nb_floor_divide), "//="); } @@ -657,7 +654,6 @@ PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w) PyObject * PyNumber_InPlaceTrueDivide(PyObject *v, PyObject *w) { - /* XXX tp_flags test */ return binary_iop(v, w, NB_SLOT(nb_inplace_true_divide), NB_SLOT(nb_true_divide), "/="); }