pywin32 icon indicating copy to clipboard operation
pywin32 copied to clipboard

Fix new 3.14 C API deprecation for `_Py_HashPointer`

Open Avasam opened this issue 7 months ago • 0 comments

Addresses a Python C API Deprecation listed in https://github.com/mhammond/pywin32/issues/2588

_Py_HashPointer is currently an alias for Py_HashPointer kept temporarily for backwards compatibility. So this should be safe.

// Kept for backward compatibility
#define _Py_HashPointer Py_HashPointer

Avasam avatar May 09 '25 16:05 Avasam