MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / is_other

Method is_other

test/sql/test_external_traversal.py:95–101  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

93 self.items = items
94
95 def is_other(self, other):
96 if other is not self:
97 return False
98 for i1, i2 in zip(self.items, other.items):
99 if i1 is not i2:
100 return False
101 return True
102
103 __hash__ = ClauseElement.__hash__
104

Callers 4

test_test_classesMethod · 0.95
test_cloneMethod · 0.95
test_no_cloneMethod · 0.95
test_change_in_placeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected