Home | History | Annotate | Download | only in test

Lines Matching full:sendall

688                 c.sendall(b"x" * (1024**2))
692 self.assertRaises(socket.timeout, c.sendall, b"x" * (1024**2))
771 # Testing sendall() with a 2048 byte string over TCP
782 self.serv_conn.sendall(big_chunk)
1184 def sendall(self, data, flags=0):
1185 self._sock.sendall(data, flags)