#ifndef Py_CPYTHON_HASH_H
# error "this header file must not be included directly"
#endif
#define PyHASH_MULTIPLIER …
#if SIZEOF_VOID_P >= 8
#define PyHASH_BITS …
#else
#define PyHASH_BITS …
#endif
#define PyHASH_MODULUS …
#define PyHASH_INF …
#define PyHASH_IMAG …
#define _PyHASH_MULTIPLIER …
#define _PyHASH_BITS …
#define _PyHASH_MODULUS …
#define _PyHASH_INF …
#define _PyHASH_IMAG …
PyAPI_FUNC(Py_hash_t) _Py_HashDouble(PyObject *, double);
#define _Py_HashPointer …
PyHash_FuncDef;
PyAPI_FUNC(PyHash_FuncDef*) PyHash_GetFuncDef(void);
PyAPI_FUNC(Py_hash_t) Py_HashPointer(const void *ptr);
PyAPI_FUNC(Py_hash_t) PyObject_GenericHash(PyObject *);
PyAPI_FUNC(Py_hash_t) Py_HashBuffer(const void *ptr, Py_ssize_t len);