mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)
This commit is contained in:
parent
567ab3bd15
commit
e2e0b4b4b9
14 changed files with 51 additions and 13 deletions
|
@ -301,7 +301,7 @@ static Py_hash_t
|
|||
method_hash(PyMethodObject *a)
|
||||
{
|
||||
Py_hash_t x, y;
|
||||
x = _Py_HashPointer(a->im_self);
|
||||
x = PyObject_GenericHash(a->im_self);
|
||||
y = PyObject_Hash(a->im_func);
|
||||
if (y == -1)
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue