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

Method _testSendAndRecvMulti

Lib/test/test_socket.py:2532–2537  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2530 self.assertEqual(self.data2, data)
2531
2532 def _testSendAndRecvMulti(self):
2533 self.data1 = b'bacon'
2534 self.cli.sendto(self.data1, 0, (HOST, self.port))
2535
2536 self.data2 = b'egg'
2537 self.cli.sendto(self.data2, 0, (HOST, self.port))
2538
2539 def testSelect(self):
2540 r, w, x = select.select([self.serv], [], [], 3.0)

Callers

nothing calls this directly

Calls 1

sendtoMethod · 0.45

Tested by

no test coverage detected