MCPcopy Index your code
hub / github.com/RustPython/RustPython / send

Method send

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

Source from the content-addressed store, hash-verified

537 return (not self.connected) or len(self.out_buffer)
538
539 def send(self, data):
540 if self.debug:
541 self.log_info('sending %s' % repr(data))
542 self.out_buffer = self.out_buffer + data
543 self.initiate_send()
544
545# ---------------------------------------------------------------------------
546# used for debugging.

Callers

nothing calls this directly

Calls 3

initiate_sendMethod · 0.95
reprFunction · 0.85
log_infoMethod · 0.80

Tested by

no test coverage detected