aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/hashtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/hashtable.c')
-rw-r--r--Python/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/hashtable.c b/Python/hashtable.c
index 1548c2e4618..90fe34e6280 100644
--- a/Python/hashtable.c
+++ b/Python/hashtable.c
@@ -109,7 +109,7 @@ _Py_hashtable_hash_ptr(struct _Py_hashtable_t *ht, const void *pkey)
{
void *key;
_Py_HASHTABLE_READ_KEY(ht, pkey, key);
- return (Py_uhash_t)_Py_HashPointer(key);
+ return (Py_uhash_t)_Py_HashPointerRaw(key);
}