From: Rémi Lapeyre Date: Mon, 18 Mar 2019 10:07:53 +0000 (+0100) Subject: Fix typo in _PyObject_FastCallDict documentation (GH-12383) X-Git-Tag: v3.8.0a3~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4b97af8bed21e32eb77e7f7497acde1f8af4e70;p=python Fix typo in _PyObject_FastCallDict documentation (GH-12383) --- diff --git a/Include/cpython/abstract.h b/Include/cpython/abstract.h index 991bea14eb..b8b2d449fa 100644 --- a/Include/cpython/abstract.h +++ b/Include/cpython/abstract.h @@ -66,7 +66,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,