Lines Matching full:rows
770 def emit_table(self, colspec_row, rows): argument
772 if not rows:
776 colspec = "\t".join(["l"] * len(rows[0]))
790 for r in rows:
803 rows = []
815 rows.append(parts)
818 if rows and rows[0]:
820 colspec_row = [""] * len(rows[0])
822 for j in range(0, len(rows[0])):
824 for row in rows:
829 rows = []
839 return i, self.emit_table(colspec_row, rows)
847 rows = []
863 if rows and rows[0]:
865 colspec_row = [""] * len(rows[0])
867 for j in range(0, len(rows[0])):
869 for row in rows:
874 rows = []
884 rows.append(row)
888 return i, self.emit_table(colspec_row, rows)