Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a09315 commit d2f8747Copy full SHA for d2f8747
2 files changed
Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.6.0 alpha 4
10
Core and Builtins
11
-----------------
12
13
+- Issue #17596: Include <wincrypt.h> to help with Min GW building.
14
+
15
- Issue #27507: Add integer overflow check in bytearray.extend(). Patch by
16
Xiang Zhang.
17
Python/random.c
@@ -1,6 +1,9 @@
1
#include "Python.h"
2
#ifdef MS_WINDOWS
3
# include <windows.h>
4
+/* All sample MSDN wincrypt programs include the header below. It is at least
5
+ * required with Min GW. */
6
+# include <wincrypt.h>
7
#else
8
# include <fcntl.h>
9
# ifdef HAVE_SYS_STAT_H
0 commit comments