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

Method __init__

Lib/socketserver.py:203–208  ·  view source on GitHub ↗

Constructor. May be extended, do not override.

(self, server_address, RequestHandlerClass)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

EventMethod · 0.80

Tested by

no test coverage detected