/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: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-06-04 20:40:27 UTC
  • mfrom: (6651.2.2 xrangeless)
  • Revision ID: breezy.the.bot@gmail.com-20170604204027-6mgwojse24hlh0wt
Apply 2to3 xrange fixer

Merged from https://code.launchpad.net/~gz/brz/xrangeless/+merge/325046

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]: