]> granicus.if.org Git - python/commitdiff
Fix typo in _PyObject_FastCallDict documentation (GH-12383)
authorRémi Lapeyre <remi.lapeyre@henki.fr>
Mon, 18 Mar 2019 10:07:53 +0000 (11:07 +0100)
committerVictor Stinner <vstinner@redhat.com>
Mon, 18 Mar 2019 10:07:53 +0000 (11:07 +0100)
Include/cpython/abstract.h

index 991bea14ebf086e88fe91024627ee3d3b2729cb9..b8b2d449faf306422aa7b674a551354b9f617a09 100644 (file)
@@ -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,