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

Method send

Lib/ssl.py:1265–1274  ·  view source on GitHub ↗
(self, data, flags=0)

Source from the content-addressed store, hash-verified

1263 return self._sslobj.compression()
1264
1265 def send(self, data, flags=0):
1266 self._checkClosed()
1267 if self._sslobj is not None:
1268 if flags != 0:
1269 raise ValueError(
1270 "non-zero flags not allowed in calls to send() on %s" %
1271 self.__class__)
1272 return self._sslobj.write(data)
1273 else:
1274 return super().send(data, flags)
1275
1276 def sendto(self, data, flags_or_addr, addr=None):
1277 self._checkClosed()

Callers 1

sendallMethod · 0.95

Calls 3

_checkClosedMethod · 0.95
superClass · 0.85
writeMethod · 0.45

Tested by

no test coverage detected