-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
gh-135748: use argument clinic for more socket methods #135749
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
85ca685
to
b9032ac
Compare
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.
I would have expected 'flags' to be allowed to be passed as a keyword but apparently it was never the case. Assuming you didn't change the docs, LGTM.
_socket.socket.sendmsg | ||
self as s: self(type="PySocketSockObject *") | ||
buffers as data_arg: object | ||
ancdata as cmsg_arg: object = NULL |
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.
ancdata as cmsg_arg: object(c_default="NULL") = ()
buffers as data_arg: object | ||
ancdata as cmsg_arg: object = NULL | ||
flags: int = 0 | ||
address as addr_arg: object = NULL |
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.
address as addr_arg: object(c_default="NULL") = None
Uh oh!
There was an error while loading. Please reload this page.