MCPcopy Index your code
hub / github.com/python-websockets/websockets / write

Method write

tests/asyncio/connection.py:103–108  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

101 return getattr(self.transport, name)
102
103 def write(self, data):
104 if self.delay_write is not None:
105 assert not self.drop_write
106 self.loop.call_later(self.delay_write, self.transport.write, data)
107 elif not self.drop_write:
108 self.transport.write(data)
109
110 def write_eof(self):
111 if self.delay_write_eof is not None:

Callers 5

run_mainMethod · 0.45
junkMethod · 0.45
test_junk_handshakeMethod · 0.45
encodeMethod · 0.45
receive_frameMethod · 0.45

Calls

no outgoing calls

Tested by 5

run_mainMethod · 0.36
junkMethod · 0.36
test_junk_handshakeMethod · 0.36
encodeMethod · 0.36
receive_frameMethod · 0.36