Fix typo in _PyObject_FastCallDict documentation (GH-12383)

This commit is contained in:
Rémi Lapeyre 2019-03-18 11:07:53 +01:00 committed by Victor Stinner
parent 23581c018f
commit b4b97af8be
1 changed files with 1 additions and 1 deletions

View 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,