method: execnet.SocketGateway.__init__

*Not documented*
    def __init__(self, host, port):

origin: execnet.SocketGateway

where:

changes in __dict__ after execution:

function source:

def __init__(self, host, port):
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    self.host = host = str(host)
    self.port = port = int(port)
    sock.connect((host, port))
    io = inputoutput.SocketIO(sock)
    InstallableGateway.__init__(self, io=io)

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/execnet/register.py

traceback execnet.SocketGateway.__init__.0