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

Method __init__

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

Source from the content-addressed store, hash-verified

54 enable_UTF8 = False
55
56 def __init__(self, conn):
57 asynchat.async_chat.__init__(self, conn)
58 self.set_terminator(b"\r\n")
59 self.in_buffer = []
60 self.push('+OK dummy pop3 server ready. <timestamp>')
61 self.tls_active = False
62 self.tls_starting = False
63
64 def collect_incoming_data(self, data):
65 self.in_buffer.append(data)

Callers

nothing calls this directly

Calls 3

pushMethod · 0.95
set_terminatorMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected