summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-12-09 16:09:30 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-12-09 16:09:30 +0100
commit55ba38a48097e4b21b406cc617df1481727f5c25 (patch)
tree623f4fa4c83ecbdd1c0170399ca72741fbe0fb82 /Python/import.c
parent61bdb0d31924ec5fd12aa8dbe197002c57dfbf82 (diff)
downloadcpython-git-55ba38a48097e4b21b406cc617df1481727f5c25.tar.gz
Use _PyObject_CallMethodIdObjArgs()
Issue #28915: Replace _PyObject_CallMethodId() with _PyObject_CallMethodIdObjArgs() in various modules when the format string was only made of "O" formats, PyObject* arguments. _PyObject_CallMethodIdObjArgs() avoids the creation of a temporary tuple and doesn't have to parse a format string.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 6bcb1d79fd..aef18005e2 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1705,7 +1705,7 @@ PyImport_ReloadModule(PyObject *m)
Py_INCREF(imp);
}
- reloaded_module = _PyObject_CallMethodId(imp, &PyId_reload, "O", m);
+ reloaded_module = _PyObject_CallMethodIdObjArgs(imp, &PyId_reload, m, NULL);
Py_DECREF(imp);
return reloaded_module;
}