Home | History | Annotate | Download | only in distutils

Lines Matching refs:lines

346         #   - 2 spaces before option block start lines
351 # Now generate lines of help text. (If 80 columns were good enough
357 lines = [header]
359 lines = ['Option summary:']
370 lines.append(" --%-*s %s" % (max_opt, long, text[0]))
372 lines.append(" --%-*s " % (max_opt, long))
379 lines.append(" --%-*s %s" %
382 lines.append(" --%-*s" % opt_names)
385 lines.append(big_indent + l)
389 return lines
413 Split 'text' into multiple lines of no more than 'width' characters
426 lines = []
460 # and store this line in the list-of-all-lines -- as a single
462 lines.append(string.join(cur_line, ''))
466 return lines