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

Method difference

lib/sqlalchemy/testing/util.py:135–136  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

133 return RandomSet(set.union(self, other))
134
135 def difference(self, other):
136 return RandomSet(set.difference(self, other))
137
138 def intersection(self, other):
139 return RandomSet(set.intersection(self, other))

Callers 15

_check_attachMethod · 0.45
_copy_internalsMethod · 0.45
__add__Method · 0.45
__add__Method · 0.45
safe_mergeMethod · 0.45
embeddedMethod · 0.45
_setup_select_stackMethod · 0.45

Calls 1

RandomSetClass · 0.85