From 985ecdcfc29adfc36ce2339acf03f819ad414869 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 20 Nov 2013 11:46:18 +0100 Subject: ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. Python now uses SipHash24 on all major platforms. --- Include/Python.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index a78a721926..2dd82903bc 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -68,6 +68,7 @@ #include "object.h" #include "objimpl.h" #include "typeslots.h" +#include "pyhash.h" #include "pydebug.h" -- cgit v1.2.1