summaryrefslogtreecommitdiff
path: root/Objects/call.c
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-06-14 12:37:15 +0200
committerInada Naoki <songofacandy@gmail.com>2019-06-14 19:37:15 +0900
commitb2f94730d947f25b8507c5f76202e917683e76f7 (patch)
tree893ba5034d461a8a1eae24fe95e29ffa5711c6cb /Objects/call.c
parent05f831865545b08c9a21cfb7773af58b76ec64cb (diff)
downloadcpython-git-b2f94730d947f25b8507c5f76202e917683e76f7.tar.gz
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Diffstat (limited to 'Objects/call.c')
-rw-r--r--Objects/call.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/call.c b/Objects/call.c
index 578e1b3ab6..8eae1e10d8 100644
--- a/Objects/call.c
+++ b/Objects/call.c
@@ -1211,9 +1211,6 @@ object_vacall(PyObject *base, PyObject *callable, va_list vargs)
}
-/* Private API for the LOAD_METHOD opcode. */
-extern int _PyObject_GetMethod(PyObject *, PyObject *, PyObject **);
-
PyObject *
PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...)
{