commit | 196a530e00d88a138973bf9182e013937e293f97 | [log] [tgz] |
---|---|---|
author | Jeroen Demeyer <J.Demeyer@UGent.be> | Thu Jul 04 12:31:34 2019 +0200 |
committer | Inada Naoki <songofacandy@gmail.com> | Thu Jul 04 19:31:34 2019 +0900 |
tree | 35443abb5aa148b459f68ae43a18cdbb0627ba76 | |
parent | 9d40554e0da09a44a8547f3f3a2b9dedfeaf7928 [diff] [blame] |
bpo-37483: add _PyObject_CallOneArg() function (#14558)
diff --git a/Objects/longobject.c b/Objects/longobject.c index 50ea2a4..3978f5c 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c
@@ -5611,8 +5611,7 @@ Py_DECREF(bytes); if (long_obj != NULL && type != &PyLong_Type) { - Py_SETREF(long_obj, PyObject_CallFunctionObjArgs((PyObject *)type, - long_obj, NULL)); + Py_SETREF(long_obj, _PyObject_CallOneArg((PyObject *)type, long_obj)); } return long_obj;