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

Method is_reading

Lib/asyncio/transports.py:51–53  ·  view source on GitHub ↗

Return True if the transport is receiving.

(self)

Source from the content-addressed store, hash-verified

49 __slots__ = ()
50
51 def is_reading(self):
52 """Return True if the transport is receiving."""
53 raise NotImplementedError
54
55 def pause_reading(self):
56 """Pause the receiving end.

Calls

no outgoing calls