wb-airbus

Results 1 comments of wb-airbus

The following hack makes the copy behave as expected: ```python from scapy.fields import _FieldContainer import copy def _copy_hack(self): def maybe_copy_member(m): return m.copy() if hasattr(m, "copy") else m c = type(self)...