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

Method __init__

Lib/test/test_socketserver.py:374–376  ·  view source on GitHub ↗
(self, *pos, **kw)

Source from the content-addressed store, hash-verified

372class ThreadingErrorTestServer(socketserver.ThreadingMixIn,
373 BaseErrorTestServer):
374 def __init__(self, *pos, **kw):
375 self.done = threading.Event()
376 super().__init__(*pos, **kw)
377
378 def shutdown_request(self, *pos, **kw):
379 super().shutdown_request(*pos, **kw)

Callers

nothing calls this directly

Calls 3

superClass · 0.85
EventMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected