MCPcopy Index your code
hub / github.com/clips/pattern / __iadd__

Method __iadd__

pattern/db/__init__.py:2099–2100  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

2097 def __add__(self, value):
2098 raise TypeError, "unsupported operand type(s) for +: 'Datasheet.columns[x]' and '%s'" % value.__class__.__name__
2099 def __iadd__(self, value):
2100 self.append(value); return self
2101 def __contains__(self, value):
2102 for v in self:
2103 if v == value: return True

Callers

nothing calls this directly

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected