Issue #10185: use Py_hash_t instead of long

This commit is contained in:
Antoine Pitrou 2010-10-23 19:42:38 +00:00
parent 57f75799bf
commit 29aad0005d

View file

@ -225,7 +225,7 @@ test_lazy_hash_inheritance(PyObject* self)
{
PyTypeObject *type;
PyObject *obj;
long hash;
Py_hash_t hash;
type = &_HashInheritanceTester_Type;