MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / difference

Method difference

lib/sqlalchemy/testing/util.py:94–95  ·  lib/sqlalchemy/testing/util.py::RandomSet.difference
(self, other)

Source from the content-addressed store, hash-verified

92 return RandomSet(set.union(self, other))
93
94 def difference(self, other):
95 return RandomSet(set.difference(self, other))
96
97 def intersection(self, other):
98 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