make hashes always the size of pointers; introduce Py_hash_t #9778

This commit is contained in:
Benjamin Peterson 2010-10-17 20:54:53 +00:00
parent 6fb457526c
commit 8f67d0893f
31 changed files with 137 additions and 131 deletions

View file

@ -1148,12 +1148,12 @@ Delete a named attribute on an object; delattr(x, 'y') is equivalent to\n\
static PyObject *
builtin_hash(PyObject *self, PyObject *v)
{
long x;
Py_hash_t x;
x = PyObject_Hash(v);
if (x == -1)
return NULL;
return PyLong_FromLong(x);
return PyLong_FromSsize_t(x);
}
PyDoc_STRVAR(hash_doc,