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

Method __init__

Lib/socketserver.py:200–205  ·  view source on GitHub ↗

Constructor. May be extended, do not override.

(self, server_address, RequestHandlerClass)

Source from the content-addressed store, hash-verified

198 timeout = None
199
200 def __init__(self, server_address, RequestHandlerClass):
201 """Constructor. May be extended, do not override."""
202 self.server_address = server_address
203 self.RequestHandlerClass = RequestHandlerClass
204 self.__is_shut_down = threading.Event()
205 self.__shutdown_request = False
206
207 def server_activate(self):
208 """Called by constructor to activate the server.

Callers

nothing calls this directly

Calls 1

EventMethod · 0.80

Tested by

no test coverage detected