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

Method _do_handshake

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

Source from the content-addressed store, hash-verified

559 self._fatal_error(ConnectionAbortedError(msg))
560
561 def _do_handshake(self):
562 try:
563 self._sslobj.do_handshake()
564 except SSLAgainErrors:
565 self._process_outgoing()
566 except ssl.SSLError as exc:
567 self._on_handshake_complete(exc)
568 else:
569 self._on_handshake_complete(None)
570
571 def _on_handshake_complete(self, handshake_exc):
572 if self._handshake_timeout_handle is not None:

Callers 2

buffer_updatedMethod · 0.95
_start_handshakeMethod · 0.95

Calls 3

_process_outgoingMethod · 0.95
do_handshakeMethod · 0.45

Tested by

no test coverage detected