diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-23 19:07:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 19:07:12 (GMT) |
commit | adb27ea2d5e2f74f4be8f15b199889161c33e801 (patch) | |
tree | 5fc0996181ba84e5c73a5372ffd741e101b676f2 /Modules/_ssl.c | |
parent | 956b3de816f4b18f6b947a11c8eec6c39f60ea88 (diff) | |
download | cpython-adb27ea2d5e2f74f4be8f15b199889161c33e801.zip cpython-adb27ea2d5e2f74f4be8f15b199889161c33e801.tar.gz cpython-adb27ea2d5e2f74f4be8f15b199889161c33e801.tar.bz2 |
gh-106320: Remove _PyIsSelectable_fd() C API (#107142)
Move _PyIsSelectable_fd() macro to the internal C API
(pycore_fileutils.h).
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r-- | Modules/_ssl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index ed720b4..699431c 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -26,6 +26,7 @@ #define OPENSSL_NO_DEPRECATED 1 #include "Python.h" +#include "pycore_fileutils.h" // _PyIsSelectable_fd() #include "pycore_weakref.h" // _PyWeakref_GET_REF() /* Include symbols from _socket module */ |