diff options
author | Georg Brandl <georg@python.org> | 2009-05-26 16:43:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-26 16:43:13 (GMT) |
commit | 7d5285ec79ef0f907ade0f110a008694441a97e3 (patch) | |
tree | a88b3b08b308fb9038aa15dafd9a99fb45b68378 /Include/abstract.h | |
parent | c38a0002bca5424a1ec3cbc68af4ee8727ba2302 (diff) | |
download | cpython-7d5285ec79ef0f907ade0f110a008694441a97e3.zip cpython-7d5285ec79ef0f907ade0f110a008694441a97e3.tar.gz cpython-7d5285ec79ef0f907ade0f110a008694441a97e3.tar.bz2 |
#6115: remove entries for the already removed PyNumber_Divide and PyNumber_InPlaceDivide from the header and the docs.
Diffstat (limited to 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index dd00a53..017a841 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -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); |