gh-127840: Revert "gh-127840: pass flags and address from send_fds (GH-127841)" (#134482)

Revert "gh-127840: pass flags and address from send_fds (GH-127841)"

This reverts commit 518c95b552.
This commit is contained in:
Gregory P. Smith 2025-05-21 23:38:44 -04:00 committed by GitHub
parent f3fc0c16e0
commit 296a66051e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1 additions and 26 deletions

View file

@ -563,7 +563,7 @@ if hasattr(_socket.socket, "sendmsg"):
import array
return sock.sendmsg(buffers, [(_socket.SOL_SOCKET,
_socket.SCM_RIGHTS, array.array("i", fds))], flags, address)
_socket.SCM_RIGHTS, array.array("i", fds))])
__all__.append("send_fds")
if hasattr(_socket.socket, "recvmsg"):