summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi/hash.c
Commit message (Collapse)AuthorAgeFilesLines
* gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)Serhiy Storchaka2024-03-221-0/+11
|
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-061-0/+16
| | | | | * Implement _Py_HashPointerRaw() as a static inline function. * Add Py_HashPointer() tests to test_capi.test_hash. * Keep _Py_HashPointer() function as an alias to Py_HashPointer().
* gh-111545: Test PyHash_GetFuncDef() function (#112098)Victor Stinner2023-11-151-0/+56
Add Modules/_testcapi/hash.c and Lib/test/test_capi/test_hash.py.