/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/annotate.py

  • Committer: Martin
  • Date: 2017-06-04 18:09:30 UTC
  • mto: This revision was merged to the branch mainline in revision 6653.
  • Revision ID: gzlist@googlemail.com-20170604180930-zpcenvzu13lilaax
Apply 2to3 xrange fix and fix up with sixish range

Show diffs side-by-side

added added

removed removed

Lines of Context:
350
350
        if child_idx > last_child_idx:
351
351
            output_extend(child_lines[start_child + last_child_idx
352
352
                                      :start_child + child_idx])
353
 
        for offset in xrange(match_len):
 
353
        for offset in range(match_len):
354
354
            left = child_lines[start_child+child_idx+offset]
355
355
            right = right_lines[start_right+right_idx+offset]
356
356
            if left[0] == right[0]: