(self)
| 368 | return pipe_fds |
| 369 | |
| 370 | def _socketpair(self): |
| 371 | socketpair = socket.socketpair() |
| 372 | self.files.extend(socketpair) |
| 373 | return socketpair |
| 374 | |
| 375 | def _mock_select(self, rfds, wfds, xfds): |
| 376 | # This will raise IndexError when no more expected calls exist. |
no test coverage detected