From 559bb6a71399af3b1b2a0ba97230d2bcc649e993 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Aug 2016 22:48:54 +0200 Subject: 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() --- Objects/iterobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/iterobject.c') diff --git a/Objects/iterobject.c b/Objects/iterobject.c index a8e6e1c0c7..75b2fcbd41 100644 --- a/Objects/iterobject.c +++ b/Objects/iterobject.c @@ -214,7 +214,7 @@ calliter_iternext(calliterobject *it) return NULL; } - result = _PyObject_FastCall(it->it_callable, NULL, 0, NULL); + result = _PyObject_CallNoArg(it->it_callable); if (result != NULL) { int ok; -- cgit v1.2.1