summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2017-12-16 19:08:05 (GMT)
committerGitHub <noreply@github.com>2017-12-16 19:08:05 (GMT)
commit950840261c349e100ec5d7381fcd742c017e242d (patch)
tree9acb62dfc2d0aaa5cfc2ec355667d1d6b9c047d5 /Include
parent45700fb757591a672e9d25b8252971c2a2caeaf2 (diff)
downloadcpython-950840261c349e100ec5d7381fcd742c017e242d.zip
cpython-950840261c349e100ec5d7381fcd742c017e242d.tar.gz
cpython-950840261c349e100ec5d7381fcd742c017e242d.tar.bz2
Fix PyObject_Hash signature in comment (#4905)
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 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.