summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-11-19 16:04:54 (GMT)
committerGuido van Rossum <guido@python.org>1997-11-19 16:04:54 (GMT)
commit127b8dd8d49425ee34a4b4b88966772f47239d97 (patch)
tree93e836949f149639fe3735512510fb1f3ae29e75 /Include
parent242c64256c03f94e043a7528ff5b7e0220262d8d (diff)
downloadcpython-127b8dd8d49425ee34a4b4b88966772f47239d97.zip
cpython-127b8dd8d49425ee34a4b4b88966772f47239d97.tar.gz
cpython-127b8dd8d49425ee34a4b4b88966772f47239d97.tar.bz2
Add declaration for PyNumber_CoerceEx().
Diffstat (limited to 'Include')
-rw-r--r--Include/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h
index 4ab8fde..f2a83d7 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -273,6 +273,7 @@ extern long PyObject_Hash Py_PROTO((PyObject *));
extern int PyObject_IsTrue Py_PROTO((PyObject *));
extern int PyCallable_Check Py_PROTO((PyObject *));
extern int PyNumber_Coerce Py_PROTO((PyObject **, PyObject **));
+extern int PyNumber_CoerceEx Py_PROTO((PyObject **, PyObject **));
/* Flag bits for printing: */
#define Py_PRINT_RAW 1 /* No string quotes etc. */