summarylogtreecommitdiffstats
path: root/0065-fix-isselectable.patch
diff options
context:
space:
mode:
Diffstat (limited to '0065-fix-isselectable.patch')
-rw-r--r--0065-fix-isselectable.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/0065-fix-isselectable.patch b/0065-fix-isselectable.patch
new file mode 100644
index 000000000000..9e4bb58673bf
--- /dev/null
+++ b/0065-fix-isselectable.patch
@@ -0,0 +1,29 @@
+From 27e5727fb44af8826b8725b2bc6de09e79e1b78f Mon Sep 17 00:00:00 2001
+From: Christoph Reiter <reiter.christoph@gmail.com>
+Date: Thu, 17 Jun 2021 18:52:18 +0530
+Subject: [PATCH 065/N] fix isselectable
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Co-authored-by: Алексей <alexey.pawlow@gmail.com>
+---
+ Include/fileobject.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Include/fileobject.h b/Include/fileobject.h
+index 6ec2994..a80f195 100644
+--- a/Include/fileobject.h
++++ b/Include/fileobject.h
+@@ -30,7 +30,7 @@ PyAPI_DATA(int) Py_UTF8Mode;
+ #endif
+
+ /* A routine to check if a file descriptor can be select()-ed. */
+-#ifdef _MSC_VER
++#ifdef MS_WINDOWS
+ /* On Windows, any socket fd can be select()-ed, no matter how high */
+ #define _PyIsSelectable_fd(FD) (1)
+ #else
+--
+2.33.0
+