(self, other)
| 642 | __truediv__ = __div__ |
| 643 | |
| 644 | def __rdiv__(self, other): |
| 645 | # type: (Any) -> Packet |
| 646 | if isinstance(other, (bytes, str, bytearray, memoryview)): |
| 647 | return conf.raw_layer(load=bytes_encode(other)) / self |
| 648 | else: |
| 649 | raise TypeError |
| 650 | __rtruediv__ = __rdiv__ |
| 651 | |
| 652 | def __mul__(self, other): |