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

Method resume

Lib/asyncio/sslproto.py:870–876  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

868 self._app_reading_paused = False
869
870 def resume():
871 if self._state == SSLProtocolState.WRAPPED:
872 self._do_read()
873 elif self._state == SSLProtocolState.FLUSHING:
874 self._do_flush()
875 elif self._state == SSLProtocolState.SHUTDOWN:
876 self._do_shutdown()
877 self._loop.call_soon(resume)
878
879 # Flow control for reads from SSL socket

Callers

nothing calls this directly

Calls 3

_do_readMethod · 0.95
_do_flushMethod · 0.95
_do_shutdownMethod · 0.95

Tested by

no test coverage detected