MCPcopy Index your code
hub / github.com/secdev/scapy / __ne__

Method __ne__

scapy/packet.py:1258–1260  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1256 return self.payload == other.payload
1257
1258 def __ne__(self, other):
1259 # type: (Any) -> bool
1260 return not self.__eq__(other)
1261
1262 # Note: setting __hash__ to None is the standard way
1263 # of making an object un-hashable. mypy doesn't know that

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.95

Tested by

no test coverage detected