(sockets, remain=None)
| 449 | if WINDOWS: |
| 450 | @staticmethod |
| 451 | def select(sockets, remain=None): |
| 452 | # type: (List[SuperSocket], Optional[float]) -> List[SuperSocket] |
| 453 | from scapy.automaton import select_objects |
| 454 | return select_objects(sockets, remain) |
| 455 | |
| 456 | |
| 457 | class StreamSocket(SimpleSocket): |
nothing calls this directly
no test coverage detected