/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/textmerge.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 10:50:21 UTC
  • mfrom: (7164 work)
  • mto: This revision was merged to the branch mainline in revision 7165.
  • Revision ID: jelmer@jelmer.uk-20181116105021-xl419v2rh4aus1au
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2009, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
17
17
# Author: Martin Pool <mbp@canonical.com>
18
18
#         Aaron Bentley <aaron.bentley@utoronto.ca>
19
19
 
 
20
from __future__ import absolute_import
20
21
 
21
 
import bzrlib.patiencediff
 
22
from .lazy_import import lazy_import
 
23
lazy_import(globals(), """
 
24
from breezy import patiencediff
 
25
""")
22
26
 
23
27
 
24
28
class TextMerge(object):
37
41
    """
38
42
    # TODO: Show some version information (e.g. author, date) on conflicted
39
43
    # regions.
40
 
    A_MARKER = '<<<<<<< \n'
41
 
    B_MARKER = '>>>>>>> \n'
42
 
    SPLIT_MARKER = '=======\n'
 
44
    A_MARKER = b'<<<<<<< \n'
 
45
    B_MARKER = b'>>>>>>> \n'
 
46
    SPLIT_MARKER = b'=======\n'
43
47
    def __init__(self, a_marker=A_MARKER, b_marker=B_MARKER,
44
48
                 split_marker=SPLIT_MARKER):
45
49
        self.a_marker = a_marker
131
135
        """Return structured merge info.
132
136
        See TextMerge docstring.
133
137
        """
134
 
        sm = bzrlib.patiencediff.PatienceSequenceMatcher(None, self.lines_a, self.lines_b)
 
138
        sm = patiencediff.PatienceSequenceMatcher(
 
139
            None, self.lines_a, self.lines_b)
135
140
        pos_a = 0
136
141
        pos_b = 0
137
142
        for ai, bi, l in sm.get_matching_blocks():