From 59073f441e4b5d45c6405fa595c414fd0b789a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Lapeyre?= Date: Mon, 18 Mar 2019 11:07:53 +0100 Subject: [PATCH] bpo-36317: Fix typo in _PyObject_FastCallDict documentation (GH-12383) (cherry picked from commit b4b97af8bed21e32eb77e7f7497acde1f8af4e70) --- Include/abstract.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/abstract.h b/Include/abstract.h index 4088f75ff3c7ee..3fe5a0064532ea 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -220,7 +220,7 @@ PyAPI_FUNC(int) _PyObject_HasFastCall(PyObject *callable); If nargs is equal to zero, args can be NULL. kwargs can be NULL. nargs must be greater or equal to zero. - Return the result on success. Raise an exception on return NULL on + Return the result on success. Raise an exception and return NULL on error. */ PyAPI_FUNC(PyObject *) _PyObject_FastCallDict( PyObject *callable,