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

Method resume_reading

Lib/asyncio/transports.py:63–69  ·  view source on GitHub ↗

Resume the receiving end. Data received will once again be passed to the protocol's data_received() method.

(self)

Source from the content-addressed store, hash-verified

61 raise NotImplementedError
62
63 def resume_reading(self):
64 """Resume the receiving end.
65
66 Data received will once again be passed to the protocol's
67 data_received() method.
68 """
69 raise NotImplementedError
70
71
72class WriteTransport(BaseTransport):

Calls

no outgoing calls