summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorRĂ©mi Lapeyre <remi.lapeyre@henki.fr>2019-03-18 12:51:23 +0100
committerVictor Stinner <vstinner@redhat.com>2019-03-18 12:51:23 +0100
commit67294f64256a5cb29ca3c22d1a8d324e7ea177c6 (patch)
treeedda70ad1ed68f618911c4136b6011b86d90f5ae /Include
parentbedfbc790e18f14cfdd59cf27d27bb86518dc3fc (diff)
downloadcpython-git-67294f64256a5cb29ca3c22d1a8d324e7ea177c6.tar.gz
bpo-36317: Fix typo in _PyObject_FastCallDict documentation (GH-12383) (GH-12402)
(cherry picked from commit b4b97af8bed21e32eb77e7f7497acde1f8af4e70)
Diffstat (limited to 'Include')
-rw-r--r--Include/abstract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 4088f75ff3..3fe5a00645 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,