diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2017-12-16 19:08:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-16 19:08:05 (GMT) |
commit | 950840261c349e100ec5d7381fcd742c017e242d (patch) | |
tree | 9acb62dfc2d0aaa5cfc2ec355667d1d6b9c047d5 | |
parent | 45700fb757591a672e9d25b8252971c2a2caeaf2 (diff) | |
download | cpython-950840261c349e100ec5d7381fcd742c017e242d.zip cpython-950840261c349e100ec5d7381fcd742c017e242d.tar.gz cpython-950840261c349e100ec5d7381fcd742c017e242d.tar.bz2 |
Fix PyObject_Hash signature in comment (#4905)
-rw-r--r-- | Include/abstract.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 991c1c3..3133cd1 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -367,7 +367,7 @@ PyAPI_FUNC(PyObject *) _PyObject_CallMethodIdObjArgs( /* Implemented elsewhere: - long PyObject_Hash(PyObject *o); + Py_hash_t PyObject_Hash(PyObject *o); Compute and return the hash, hash_value, of an object, o. On failure, return -1. |