summaryrefslogtreecommitdiff
path: root/Include/abstract.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-21 17:06:07 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-21 17:06:07 +0000
commit346656f15566ff64789dd65f3cec0e650296c9a3 (patch)
treec31210f77ee85e3cb81506dc3968b3c38ee242c4 /Include/abstract.h
parent81b6f83fc49d1603d60a8b849c018d9adca595b8 (diff)
downloadcpython-346656f15566ff64789dd65f3cec0e650296c9a3.tar.gz
Get rid of most of the rest of coerce (slot is still there for now).
Diffstat (limited to 'Include/abstract.h')
-rw-r--r--Include/abstract.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index eed23c1248..eaac2787e4 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -694,24 +694,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
expression: o1|o2.
*/
- /* Implemented elsewhere:
-
- int PyNumber_Coerce(PyObject **p1, PyObject **p2);
-
- This function takes the addresses of two variables of type
- PyObject*.
-
- If the objects pointed to by *p1 and *p2 have the same type,
- increment their reference count and return 0 (success).
- If the objects can be converted to a common numeric type,
- replace *p1 and *p2 by their converted value (with 'new'
- reference counts), and return 0.
- If no conversion is possible, or if some other error occurs,
- return -1 (failure) and don't increment the reference counts.
- The call PyNumber_Coerce(&o1, &o2) is equivalent to the Python
- statement o1, o2 = coerce(o1, o2).
- */
-
PyAPI_FUNC(Py_ssize_t) PyNumber_Index(PyObject *);
/*