summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-17 20:54:53 +0000
committerBenjamin Peterson <benjamin@python.org>2010-10-17 20:54:53 +0000
commit8c3324e313c1adb92a1e38bbcbaa494bf97b754d (patch)
tree25e2c647d7ba30fae6dd1d0446b9eaa6997c17e8 /Objects/methodobject.c
parent7ce1b2b4dc3414cd9e8bca771ee92a52e67db390 (diff)
downloadcpython-8c3324e313c1adb92a1e38bbcbaa494bf97b754d.tar.gz
make hashes always the size of pointers; introduce Py_hash_t #9778
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 356d161842..f1a9f4b702 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -224,10 +224,10 @@ meth_richcompare(PyObject *self, PyObject *other, int op)
return res;
}
-static long
+static Py_hash_t
meth_hash(PyCFunctionObject *a)
{
- long x,y;
+ Py_hash_t x, y;
if (a->m_self == NULL)
x = 0;
else {