summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-22 22:48:54 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-08-22 22:48:54 +0200
commitde03c6d8066496680a1ea99ff9e67e28852b0007 (patch)
tree7a6256b3e49a0ed76fc3da9237a4a170663f7c86 /Python/pythonrun.c
parent02e2dbc157224eb09447bd613e82649f52728a16 (diff)
downloadcpython-de03c6d8066496680a1ea99ff9e67e28852b0007.tar.gz
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Issue #27809: * Rename _PyObject_FastCall() function to _PyObject_FastCallDict() * Add _PyObject_FastCall(), _PyObject_CallNoArg() and _PyObject_CallArg1() macros calling _PyObject_FastCallDict()
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2968b34cc8..3fb6f15dd7 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -636,7 +636,7 @@ PyErr_PrintEx(int set_sys_last_vars)
stack[0] = exception;
stack[1] = v;
stack[2] = tb;
- result = _PyObject_FastCall(hook, stack, 3, NULL);
+ result = _PyObject_FastCall(hook, stack, 3);
if (result == NULL) {
PyObject *exception2, *v2, *tb2;
if (PyErr_ExceptionMatches(PyExc_SystemExit)) {