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

Method __init__

Lib/logging/config.py:1047–1053  ·  view source on GitHub ↗
(self, rcvr, hdlr, port, verify)

Source from the content-addressed store, hash-verified

1045 class Server(threading.Thread):
1046
1047 def __init__(self, rcvr, hdlr, port, verify):
1048 super(Server, self).__init__()
1049 self.rcvr = rcvr
1050 self.hdlr = hdlr
1051 self.port = port
1052 self.verify = verify
1053 self.ready = threading.Event()
1054
1055 def run(self):
1056 server = self.rcvr(port=self.port, handler=self.hdlr,

Callers 1

__init__Method · 0.45

Calls 2

superClass · 0.85
EventMethod · 0.80

Tested by

no test coverage detected