From: Rémi Lapeyre Date: Mon, 18 Mar 2019 11:51:23 +0000 (+0100) Subject: bpo-36317: Fix typo in _PyObject_FastCallDict documentation (GH-12383) (GH-12402) X-Git-Tag: v3.7.4rc1~330 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67294f64256a5cb29ca3c22d1a8d324e7ea177c6;p=thirdparty%2FPython%2Fcpython.git bpo-36317: Fix typo in _PyObject_FastCallDict documentation (GH-12383) (GH-12402) (cherry picked from commit b4b97af8bed21e32eb77e7f7497acde1f8af4e70) --- diff --git a/Include/abstract.h b/Include/abstract.h index 4088f75ff3c7..3fe5a0064532 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,