equal
deleted
inserted
replaced
505 txt_wrpr.initial_indent = txt_wrpr.subsequent_indent = '\t' |
505 txt_wrpr.initial_indent = txt_wrpr.subsequent_indent = '\t' |
506 txt_wrpr.width = txt_wrpr.width - 8 |
506 txt_wrpr.width = txt_wrpr.width - 8 |
507 |
507 |
508 for key, value in zip(keys, list_schemes()): |
508 for key, value in zip(keys, list_schemes()): |
509 w_std(key, len(key) * '-') |
509 w_std(key, len(key) * '-') |
510 w_std('\n'.join(txt_wrpr.wrap(' '.join(value))), '') |
510 w_std('\n'.join(txt_wrpr.wrap(' '.join(sorted(value)))), '') |
511 |
511 |
512 txt_wrpr.initial_indent, txt_wrpr.subsequent_indent = old_ii, old_si |
512 txt_wrpr.initial_indent, txt_wrpr.subsequent_indent = old_ii, old_si |
513 txt_wrpr.width = txt_wrpr.width + 8 |
513 txt_wrpr.width = txt_wrpr.width + 8 |
514 |
514 |
515 |
515 |