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

Method pause_writing

Lib/asyncio/base_events.py:245–248  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

243 self._proto.connection_lost(exc)
244
245 def pause_writing(self):
246 if self._write_ready_fut is not None:
247 return
248 self._write_ready_fut = self._transport._loop.create_future()
249
250 def resume_writing(self):
251 if self._write_ready_fut is None:

Callers

nothing calls this directly

Calls 1

create_futureMethod · 0.45

Tested by

no test coverage detected