Lines Matching refs:lines
787 lines = []
789 lines.append('Items in the first set but not the second:')
791 lines.append(repr(item))
793 lines.append('Items in the second set but not the first:')
795 lines.append(repr(item))
797 standardMsg = '\n'.join(lines)
899 lines = ['First has %d, Second has %d: %r' % diff for diff in differences]
900 diffMsg = '\n'.join(lines)