Best way to display the packet list. Defaults to nsummary() method
(self, *args, **kargs)
| 234 | print(prn(*res)) |
| 235 | |
| 236 | def show(self, *args, **kargs): |
| 237 | # type: (*Any, **Any) -> None |
| 238 | """Best way to display the packet list. Defaults to nsummary() method""" # noqa: E501 |
| 239 | return self.nsummary(*args, **kargs) |
| 240 | |
| 241 | def filter(self, func): |
| 242 | # type: (Callable[..., bool]) -> _PacketList[_Inner] |