(self)
| 1596 | return self |
| 1597 | |
| 1598 | def __next__(self): # type: ignore |
| 1599 | # type: () -> Packet |
| 1600 | try: |
| 1601 | return self.read_packet() |
| 1602 | except EOFError: |
| 1603 | raise StopIteration |
| 1604 | |
| 1605 | def read_all(self, count=-1): |
| 1606 | # type: (int) -> PacketList |
nothing calls this directly
no test coverage detected