MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / add

Method add

lib/sqlalchemy/testing/exclusions.py:56–66  ·  lib/sqlalchemy/testing/exclusions.py::compound.add
(self, *others)

Source from the content-addressed store, hash-verified

54 return rule
55
56 def add(self, *others):
57 copy = compound()
58 copy.fails.update(self.fails)
59 copy.skips.update(self.skips)
60 copy.warns.update(self.warns)
61
62 for other in others:
63 copy.fails.update(other.fails)
64 copy.skips.update(other.skips)
65 copy.warns.update(other.warns)
66 return copy
67
68 def not_(self):
69 copy = compound()

Callers 15

__add__Method · 0.95
registerMethod · 0.45
generate_db_urlsFunction · 0.45
reap_dbsFunction · 0.45
_add_connMethod · 0.45
add_engineMethod · 0.45
all_partial_orderingsFunction · 0.45
sizeofFunction · 0.45
__repr__Method · 0.45
__eq__Method · 0.45

Calls 2

compoundClass · 0.85
updateMethod · 0.45

Tested by 4

_resolve_namesMethod · 0.36
check_exclusionsMethod · 0.36