diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-06-14 10:37:15 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-06-14 10:37:15 (GMT) |
commit | b2f94730d947f25b8507c5f76202e917683e76f7 (patch) | |
tree | 893ba5034d461a8a1eae24fe95e29ffa5711c6cb /Objects/call.c | |
parent | 05f831865545b08c9a21cfb7773af58b76ec64cb (diff) | |
download | cpython-b2f94730d947f25b8507c5f76202e917683e76f7.zip cpython-b2f94730d947f25b8507c5f76202e917683e76f7.tar.gz cpython-b2f94730d947f25b8507c5f76202e917683e76f7.tar.bz2 |
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Diffstat (limited to 'Objects/call.c')
-rw-r--r-- | Objects/call.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/call.c b/Objects/call.c index 578e1b3..8eae1e1 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, ...) { |