MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __iadd__

Method __iadd__

lib/sqlalchemy/ext/baked.py:86–91  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

84 self._cache_key += (fn.__code__,) + args
85
86 def __iadd__(self, other):
87 if isinstance(other, tuple):
88 self.add_criteria(*other)
89 else:
90 self.add_criteria(other)
91 return self
92
93 def __add__(self, other):
94 if isinstance(other, tuple):

Callers

nothing calls this directly

Calls 1

add_criteriaMethod · 0.95

Tested by

no test coverage detected