| 65 | |
| 66 | |
| 67 | class debug: |
| 68 | recv = PacketList([], "Received") |
| 69 | sent = PacketList([], "Sent") |
| 70 | match = SndRcvList([], "Matched") |
| 71 | crashed_on = None # type: Optional[Tuple[Type[Packet], bytes]] |
| 72 | |
| 73 | |
| 74 | #################### |
nothing calls this directly
no test coverage detected