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 654da96 commit bfce0f9Copy full SHA for bfce0f9
3 files changed
Misc/NEWS
@@ -103,6 +103,9 @@ Tests
103
Build
104
-----
105
106
+- Issue #28768: Fix implicit declaration of function _setmode. Patch by
107
+ Masayuki Yamamoto
108
+
109
- Issue #29080: Removes hard dependency on hg.exe from PC/build.bat
110
111
- Issue #23903: Added missed names to PC/python3.def.
Modules/_io/fileio.c
@@ -9,6 +9,9 @@
9
#ifdef HAVE_SYS_STAT_H
10
#include <sys/stat.h>
11
#endif
12
+#ifdef HAVE_IO_H
13
+#include <io.h>
14
+#endif
15
#ifdef HAVE_FCNTL_H
16
#include <fcntl.h>
17
Modules/main.c
@@ -7,6 +7,9 @@
7
8
#if defined(MS_WINDOWS) || defined(__CYGWIN__)
#include <windows.h>
0 commit comments