From: Christian Heimes Date: Tue, 6 Sep 2016 23:45:22 +0000 (+0200) Subject: Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again. X-Git-Tag: v3.6.0b1~386 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ba83375626461f9f5c53adc75dcb5b1396392b4;p=thirdparty%2FPython%2Fcpython.git Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again. --- diff --git a/PC/config.c b/PC/config.c index 66bf4580a012..e007d4ba69e8 100644 --- a/PC/config.c +++ b/PC/config.c @@ -23,6 +23,7 @@ extern PyObject* PyInit__signal(void); extern PyObject* PyInit__sha1(void); extern PyObject* PyInit__sha256(void); extern PyObject* PyInit__sha512(void); +extern PyObject* PyInit__blake2(void); extern PyObject* PyInit_time(void); extern PyObject* PyInit__thread(void); #ifdef WIN32 @@ -96,6 +97,7 @@ struct _inittab _PyImport_Inittab[] = { {"_sha1", PyInit__sha1}, {"_sha256", PyInit__sha256}, {"_sha512", PyInit__sha512}, + {"_blake2", PyInit__blake2}, {"time", PyInit_time}, #ifdef WITH_THREAD {"_thread", PyInit__thread},