~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: Martin Pool
  • Date: 2005-08-11 18:02:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050811180201-a140c481693ba96c
- fix mdiff handling of files without a trailing newline

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
from cStringIO import StringIO
33
33
 
34
34
def linesplit(a):
35
 
    """Split into two lists: content and line positions"""
 
35
    """Split into two lists: content and line positions.
 
36
 
 
37
    This returns (al, ap).
 
38
 
 
39
    al[i] is the string content of line i of the file, including its
 
40
    newline (if any).
 
41
 
 
42
    ap[i] is the byte position in the file where that line starts.
 
43
 
 
44
    ap[-1] is the byte position of the end of the file (i.e. the
 
45
    length of the file.)
 
46
 
 
47
    This transformation allows us to do a line-based diff and then map
 
48
    back to byte positions.
 
49
    """
 
50
 
36
51
    al, ap = [], []
37
52
    last = 0
38
53
 
43
58
        last = n
44
59
        n = a.find("\n", n) + 1
45
60
 
 
61
    if last < len(a):
 
62
        al.append(a[last:])
 
63
        ap.append(last)
 
64
 
46
65
    # position at the end
47
66
    ap.append(len(a))
48
67