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

Method send

Lib/test/support/asyncore.py:529–533  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

527 return (not self.connected) or len(self.out_buffer)
528
529 def send(self, data):
530 if self.debug:
531 self.log_info('sending %s' % repr(data))
532 self.out_buffer = self.out_buffer + data
533 self.initiate_send()
534
535# ---------------------------------------------------------------------------
536# used for debugging.

Callers

nothing calls this directly

Calls 2

initiate_sendMethod · 0.95
log_infoMethod · 0.80

Tested by

no test coverage detected