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

Method __iadd__

pattern/db/__init__.py:1980–1981  ·  view source on GitHub ↗
(self, column)

Source from the content-addressed store, hash-verified

1978 def __add__(self, column):
1979 raise TypeError, "unsupported operand type(s) for +: 'Datasheet.columns' and '%s'" % column.__class__.__name__
1980 def __iadd__(self, column):
1981 self.append(column); return self
1982 def __eq__(self, columns):
1983 return list(self) == columns
1984 def __ne__(self, columns):

Callers

nothing calls this directly

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected