diff options
author | RĂ©mi Lapeyre <remi.lapeyre@henki.fr> | 2019-03-18 10:07:53 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-03-18 10:07:53 (GMT) |
commit | b4b97af8bed21e32eb77e7f7497acde1f8af4e70 (patch) | |
tree | 3006630dc26284b3e8a3fac7712f4fbfaba78831 /Include/cpython | |
parent | 23581c018fceb607fe829a41c6fbe81b4d502cab (diff) | |
download | cpython-b4b97af8bed21e32eb77e7f7497acde1f8af4e70.zip cpython-b4b97af8bed21e32eb77e7f7497acde1f8af4e70.tar.gz cpython-b4b97af8bed21e32eb77e7f7497acde1f8af4e70.tar.bz2 |
Fix typo in _PyObject_FastCallDict documentation (GH-12383)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/abstract.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/abstract.h b/Include/cpython/abstract.h index 991bea14..b8b2d44 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, |