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

Method data_received

Lib/asyncio/protocols.py:94–98  ·  view source on GitHub ↗

Called when some data is received. The argument is a bytes object.

(self, data)

Source from the content-addressed store, hash-verified

92 __slots__ = ()
93
94 def data_received(self, data):
95 """Called when some data is received.
96
97 The argument is a bytes object.
98 """
99
100 def eof_received(self):
101 """Called when the other end calls write_eof() or equivalent.

Callers 4

_do_read__copiedMethod · 0.45
_read_readyMethod · 0.45
_data_receivedMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected