Home | History | Annotate | Download | only in python2.7

Lines Matching refs:cols

478     def multicolumn(self, list, format, cols=4):
481 rows = (len(list)+cols-1)//cols
482 for col in range(cols):
483 result = result + '<td width="%d%%" valign=top>' % (100//cols)