(self, rows)
| 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): |