MCPcopy Index your code
hub / github.com/python/cpython / sendmsg

Method sendmsg

Lib/ssl.py:1286–1290  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1284 return super().sendto(data, flags_or_addr, addr)
1285
1286 def sendmsg(self, *args, **kwargs):
1287 # Ensure programs don't send data unencrypted if they try to
1288 # use this method.
1289 raise NotImplementedError("sendmsg not allowed on instances of %s" %
1290 self.__class__)
1291
1292 def sendall(self, data, flags=0):
1293 self._checkClosed()

Callers 7

send_fdsFunction · 0.80
_write_sendmsgMethod · 0.80
_testSendAndRecvMsgMethod · 0.80
sendmsgToServerMethod · 0.80
test_aead_aes_gcmMethod · 0.80
test_sendmsgMethod · 0.80
sendfdsFunction · 0.80

Calls

no outgoing calls

Tested by 4

_testSendAndRecvMsgMethod · 0.64
sendmsgToServerMethod · 0.64
test_aead_aes_gcmMethod · 0.64
test_sendmsgMethod · 0.64