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

Method _resume_reading

Lib/asyncio/sslproto.py:866–877  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

864 self._app_reading_paused = True
865
866 def _resume_reading(self):
867 if self._app_reading_paused:
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
880

Callers 1

resume_readingMethod · 0.80

Calls 1

call_soonMethod · 0.45

Tested by

no test coverage detected