(sockets, remain=conf.recv_poll_rate)
| 128 | |
| 129 | @staticmethod |
| 130 | def select(sockets, remain=conf.recv_poll_rate): |
| 131 | # type: (List[SuperSocket], Optional[float]) -> List[SuperSocket] |
| 132 | return select_objects(sockets, remain) |
| 133 | |
| 134 | |
| 135 | class UnstableSocket(TestSocket): |
nothing calls this directly
no test coverage detected