-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
GH-131296: fix clang-cl warning on Windows in overlapped.c #131590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -1811,13 +1811,6 @@ _overlapped_Overlapped_WSASendTo_impl(OverlappedObject *self, HANDLE handle, | |||
} | |||
} | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix warning : unused variable 'Overlapped_WSARecvFrom_doc' [-Wunused-const-variable].
Must be a left-over (and the only PyDoc_STRVAR
in overlapped.c).
The currently used PyDoc_STRVAR
is here:
cpython/Modules/clinic/overlapped.c.h
Lines 1145 to 1149 in 18249d9
PyDoc_STRVAR(_overlapped_Overlapped_WSARecvFrom__doc__, | |
"WSARecvFrom($self, handle, size, flags=0, /)\n" | |
"--\n" | |
"\n" | |
"Start overlapped receive."); |
@zooba I think this is a simple (and only Windows related) one? |
|
The iOS failure is caused by #127108. |
I think this is a skip news?