Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6f8c8320e9eac9bc7a7f653b43506e75916ce8e8 authored by Ɓukasz Langa on 13 May 2020, 17:31:54 UTC
Python 3.8.3
Tip revision: 6f8c832
pycore_pyhash.h
#ifndef Py_INTERNAL_HASH_H
#define Py_INTERNAL_HASH_H

#ifndef Py_BUILD_CORE
#  error "this header requires Py_BUILD_CORE define"
#endif

uint64_t _Py_KeyedHash(uint64_t, const char *, Py_ssize_t);

#endif
back to top