Clear this frame. Remove all the columns.
(self)
| 858 | self._num_rows += other.num_rows |
| 859 | |
| 860 | def clear(self): |
| 861 | """Clear this frame. Remove all the columns.""" |
| 862 | self._columns = {} |
| 863 | self._num_rows = 0 |
| 864 | |
| 865 | def __iter__(self): |
| 866 | """Return an iterator of columns.""" |
no outgoing calls