Table.row_count should be Table.count_rows()
Created by: onyxfish
Its too hard to keep this value in sync when columns are modified.
def count_rows(self): return max([len(c) for c in self])
Created by: onyxfish
Its too hard to keep this value in sync when columns are modified.
def count_rows(self): return max([len(c) for c in self])