MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

1033 class Server(threading.Thread):
1034
1035 def __init__(self, rcvr, hdlr, port, verify):
1036 super(Server, self).__init__()
1037 self.rcvr = rcvr
1038 self.hdlr = hdlr
1039 self.port = port
1040 self.verify = verify
1041 self.ready = threading.Event()
1042
1043 def run(self):
1044 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