Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/MongoEngine/mongoengine
/ __eq__
Method
__eq__
mongoengine/base/datastructures.py:411–412 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
409
return
len(list(self.items()))
410
411
def
__eq__(self, other):
412
return
list(self.items()) == list(other.items())
413
414
def
__ne__(self, other):
415
return
not (self == other)
Callers
nothing calls this directly
Calls
1
items
Method · 0.95
Tested by
no test coverage detected