diff options
Diffstat (limited to 'PC/_winreg.c')
-rw-r--r-- | PC/_winreg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/_winreg.c b/PC/_winreg.c index f92476e..4539959 100644 --- a/PC/_winreg.c +++ b/PC/_winreg.c @@ -423,7 +423,7 @@ PyHKEY_hashFunc(PyObject *ob) /* Just use the address. XXX - should we use the handle value? */ - return (long)ob; + return _Py_HashPointer(ob); } |