[Python-checkins] r85810 - python/branches/py3k/Modules/_testcapimodule.c

antoine.pitrou python-checkins at python.org
Sat Oct 23 21:42:38 CEST 2010


Author: antoine.pitrou
Date: Sat Oct 23 21:42:38 2010
New Revision: 85810

Log:
Issue #10185: use Py_hash_t instead of long



Modified:
   python/branches/py3k/Modules/_testcapimodule.c

Modified: python/branches/py3k/Modules/_testcapimodule.c
==============================================================================
--- python/branches/py3k/Modules/_testcapimodule.c	(original)
+++ python/branches/py3k/Modules/_testcapimodule.c	Sat Oct 23 21:42:38 2010
@@ -225,7 +225,7 @@
 {
     PyTypeObject *type;
     PyObject *obj;
-    long hash;
+    Py_hash_t hash;
 
     type = &_HashInheritanceTester_Type;
 


More information about the Python-checkins mailing list