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

Method pause_writing

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

create_futureMethod · 0.45

Tested by

no test coverage detected