Emulation of SuperSocket
(sockets, remain=None)
| 725 | |
| 726 | @staticmethod |
| 727 | def select(sockets, remain=None): |
| 728 | # type: (List[SuperSocket], Optional[int]) -> List[SuperSocket] |
| 729 | """Emulation of SuperSocket""" |
| 730 | return [s for s in sockets if isinstance(s, CandumpReader) and |
| 731 | not s.closed] |
no outgoing calls
no test coverage detected