Add a new row to the end of the table. :param rowvalue: A tuple of cell values, one for each column in the new row.
(self, rowvalue)
| 788 | self._check_table_vs_mlb() |
| 789 | |
| 790 | def append(self, rowvalue): |
| 791 | """ |
| 792 | Add a new row to the end of the table. |
| 793 | |
| 794 | :param rowvalue: A tuple of cell values, one for each column |
| 795 | in the new row. |
| 796 | """ |
| 797 | self.insert(len(self._rows), rowvalue) |
| 798 | if self._DEBUG: |
| 799 | self._check_table_vs_mlb() |
| 800 | |
| 801 | def clear(self): |
| 802 | """ |
no test coverage detected