From: Antoine Pitrou Date: Sat, 23 Oct 2010 19:42:38 +0000 (+0000) Subject: Issue #10185: use Py_hash_t instead of long X-Git-Tag: v3.2a4~370 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29aad0005dd56634363dabd74cf6708c9a255b43;p=thirdparty%2FPython%2Fcpython.git Issue #10185: use Py_hash_t instead of long --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 473d8052ab8c..597a88b1be8a 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -225,7 +225,7 @@ test_lazy_hash_inheritance(PyObject* self) { PyTypeObject *type; PyObject *obj; - long hash; + Py_hash_t hash; type = &_HashInheritanceTester_Type;