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

Method handle_write_event

Lib/test/test_ftplib.py:399–405  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

397 super(SSLConnection, self).handle_read_event()
398
399 def handle_write_event(self):
400 if self._ssl_accepting:
401 self._do_ssl_handshake()
402 elif self._ssl_closing:
403 self._do_ssl_shutdown()
404 else:
405 super(SSLConnection, self).handle_write_event()
406
407 def send(self, data):
408 try:

Callers

nothing calls this directly

Calls 3

_do_ssl_handshakeMethod · 0.95
_do_ssl_shutdownMethod · 0.95
superClass · 0.85

Tested by

no test coverage detected