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

Method __init__

Lib/idlelib/rpc.py:75–78  ·  view source on GitHub ↗
(self, addr, handlerclass=None)

Source from the content-addressed store, hash-verified

73class RPCServer(socketserver.TCPServer):
74
75 def __init__(self, addr, handlerclass=None):
76 if handlerclass is None:
77 handlerclass = RPCHandler
78 socketserver.TCPServer.__init__(self, addr, handlerclass)
79
80 def server_bind(self):
81 "Override TCPServer method, no bind() phase for connecting entity"

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected