[Python-checkins] cpython: Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you

christian.heimes python-checkins at python.org
Tue Sep 6 19:45:41 EDT 2016


https://hg.python.org/cpython/rev/afa5a16456ed
changeset:   103173:afa5a16456ed
user:        Christian Heimes <christian at python.org>
date:        Wed Sep 07 01:45:22 2016 +0200
summary:
  Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again.

files:
  PC/config.c |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/PC/config.c b/PC/config.c
--- a/PC/config.c
+++ b/PC/config.c
@@ -23,6 +23,7 @@
 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 @@
     {"_sha1", PyInit__sha1},
     {"_sha256", PyInit__sha256},
     {"_sha512", PyInit__sha512},
+    {"_blake2", PyInit__blake2},
     {"time", PyInit_time},
 #ifdef WITH_THREAD
     {"_thread", PyInit__thread},

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list