diff options
Diffstat (limited to 'Objects/dict-common.h')
-rw-r--r-- | Objects/dict-common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/dict-common.h b/Objects/dict-common.h index 6218552..3e52468 100644 --- a/Objects/dict-common.h +++ b/Objects/dict-common.h @@ -12,8 +12,7 @@ typedef struct { * -1 when no entry found, -3 when compare raises error. */ typedef Py_ssize_t (*dict_lookup_func) -(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr, - Py_ssize_t *hashpos); + (PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr); #define DKIX_EMPTY (-1) #define DKIX_DUMMY (-2) /* Used internally */ |