(self)
| 264 | socket.socket(socket.AF_INET, socket.SOCK_DGRAM)) |
| 265 | |
| 266 | def testRecvfromTimeout(self): |
| 267 | # Test recvfrom() timeout |
| 268 | # Prevent "Address already in use" socket exceptions |
| 269 | socket_helper.bind_port(self.sock, self.localhost) |
| 270 | self._sock_operation(1, 1.5, 'recvfrom', 1024) |
| 271 | |
| 272 | |
| 273 | def setUpModule(): |
nothing calls this directly
no test coverage detected