MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / __eq__

Method __eq__

thirdparty/odict/ordereddict.py:122–130  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

120 return d
121
122 def __eq__(self, other):
123 if isinstance(other, OrderedDict):
124 if len(self) != len(other):
125 return False
126 for p, q in zip(self.items(), other.items()):
127 if p != q:
128 return False
129 return True
130 return dict.__eq__(self, other)
131
132 def __ne__(self, other):
133 return not self == other

Callers

nothing calls this directly

Calls 1

itemsMethod · 0.80

Tested by

no test coverage detected