[Python-checkins] r85668 - python/branches/py3k/Objects/dictobject.c
benjamin.peterson
python-checkins at python.org
Sun Oct 17 23:20:58 CEST 2010
Author: benjamin.peterson
Date: Sun Oct 17 23:20:58 2010
New Revision: 85668
Log:
fix prototype
Modified:
python/branches/py3k/Objects/dictobject.c
Modified: python/branches/py3k/Objects/dictobject.c
==============================================================================
--- python/branches/py3k/Objects/dictobject.c (original)
+++ python/branches/py3k/Objects/dictobject.c Sun Oct 17 23:20:58 2010
@@ -148,7 +148,7 @@
/* forward declarations */
static PyDictEntry *
-lookdict_unicode(PyDictObject *mp, PyObject *key, long hash);
+lookdict_unicode(PyDictObject *mp, PyObject *key, Py_hash_t hash);
#ifdef SHOW_CONVERSION_COUNTS
static long created = 0L;
More information about the Python-checkins
mailing list