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

Method __iadd__

pattern/db/__init__.py:1918–1919  ·  view source on GitHub ↗
(self, row)

Source from the content-addressed store, hash-verified

1916 def __add__(self, row):
1917 raise TypeError, "unsupported operand type(s) for +: 'Datasheet.rows' and '%s'" % row.__class__.__name__
1918 def __iadd__(self, row):
1919 self.append(row); return self
1920 def __eq__(self, rows):
1921 return self._datasheet.__eq__(rows)
1922 def __ne__(self, rows):

Callers

nothing calls this directly

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected