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

Method handle_read

Lib/test/test_poplib.py:198–205  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

196 self.tls_starting = False
197
198 def handle_read(self):
199 if self.tls_starting:
200 self._do_tls_handshake()
201 else:
202 try:
203 asynchat.async_chat.handle_read(self)
204 except ssl.SSLEOFError:
205 self.handle_close()
206
207class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
208

Callers

nothing calls this directly

Calls 2

_do_tls_handshakeMethod · 0.95
handle_closeMethod · 0.45

Tested by

no test coverage detected