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

Method __init__

Lib/test/test_poplib.py:437–444  ·  view source on GitHub ↗
(self, conn)

Source from the content-addressed store, hash-verified

435 class DummyPOP3_SSLHandler(SSLConnection, DummyPOP3Handler):
436
437 def __init__(self, conn):
438 asynchat.async_chat.__init__(self, conn)
439 self.secure_connection()
440 self.set_terminator(b"\r\n")
441 self.in_buffer = []
442 self.push('+OK dummy pop3 server ready. <timestamp>')
443 self.tls_active = True
444 self.tls_starting = False
445
446
447@requires_ssl

Callers

nothing calls this directly

Calls 4

secure_connectionMethod · 0.80
set_terminatorMethod · 0.80
__init__Method · 0.45
pushMethod · 0.45

Tested by

no test coverage detected