Home | History | Annotate | Download | only in test

Lines Matching refs:Client

1702         conn = cls.connection.Client(address)
1723 # On Windows the client process should by now have connected,
1760 client = self.connection.Client(address)
1761 client.send(msg.upper())
1762 client.close()
1766 client = socket.socket()
1767 client.connect(address)
1768 client.sendall(msg.upper())
1769 client.close()
2362 conn = multiprocessing.connection.Client(address)