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

Method _set_rows

pattern/db/__init__.py:1665–1669  ·  view source on GitHub ↗
(self, rows)

Source from the content-addressed store, hash-verified

1663 def _get_rows(self):
1664 return self._rows
1665 def _set_rows(self, rows):
1666 # Datasheet.rows property can't be set, except in special case Datasheet.rows += row.
1667 if isinstance(rows, DatasheetRows) and rows._datasheet == self:
1668 self._rows = rows; return
1669 raise AttributeError, "can't set attribute"
1670 rows = property(_get_rows, _set_rows)
1671
1672 def _get_columns(self):

Callers 1

__setattr__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected