]> granicus.if.org Git - python/commitdiff
#6115: remove entries for the already removed PyNumber_Divide and PyNumber_InPlaceDiv...
authorGeorg Brandl <georg@python.org>
Tue, 26 May 2009 16:43:13 +0000 (16:43 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 26 May 2009 16:43:13 +0000 (16:43 +0000)
Doc/c-api/number.rst
Include/abstract.h

index 26e2dd4113dce7409a9b7c404df76950b5bcf1af..57ef293ded7725f30e8667fd714c4cf0a9ed9440 100644 (file)
@@ -30,12 +30,6 @@ Number Protocol
    the equivalent of the Python expression ``o1 * o2``.
 
 
-.. cfunction:: PyObject* PyNumber_Divide(PyObject *o1, PyObject *o2)
-
-   Returns the result of dividing *o1* by *o2*, or *NULL* on failure.  This is the
-   equivalent of the Python expression ``o1 / o2``.
-
-
 .. cfunction:: PyObject* PyNumber_FloorDivide(PyObject *o1, PyObject *o2)
 
    Return the floor of *o1* divided by *o2*, or *NULL* on failure.  This is
@@ -152,13 +146,6 @@ Number Protocol
    the Python statement ``o1 *= o2``.
 
 
-.. cfunction:: PyObject* PyNumber_InPlaceDivide(PyObject *o1, PyObject *o2)
-
-   Returns the result of dividing *o1* by *o2*, or *NULL* on failure.  The
-   operation is done *in-place* when *o1* supports it. This is the equivalent of
-   the Python statement ``o1 /= o2``.
-
-
 .. cfunction:: PyObject* PyNumber_InPlaceFloorDivide(PyObject *o1, PyObject *o2)
 
    Returns the mathematical floor of dividing *o1* by *o2*, or *NULL* on failure.
index dd00a533c7e7e990e9989b8687c8d0c6cf181911..017a841abb5f00dadc1a3212d87c40eaf10344f7 100644 (file)
@@ -632,13 +632,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
         o1*o2.
        */
 
-     PyAPI_FUNC(PyObject *) PyNumber_Divide(PyObject *o1, PyObject *o2);
-
-       /*
-        Returns the result of dividing o1 by o2, or null on failure.
-        This is the equivalent of the Python expression: o1/o2.
-       */
-
      PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2);
 
        /*
@@ -832,14 +825,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
         o1 *= o2.
        */
 
-     PyAPI_FUNC(PyObject *) PyNumber_InPlaceDivide(PyObject *o1, PyObject *o2);
-
-       /*
-        Returns the result of dividing o1 by o2, possibly in-place, or null
-        on failure.  This is the equivalent of the Python expression:
-        o1 /= o2.
-       */
-
      PyAPI_FUNC(PyObject *) PyNumber_InPlaceFloorDivide(PyObject *o1,
                                                        PyObject *o2);