~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: Martin Pool
  • Date: 2005-06-06 04:47:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050606044733-e902b05ac1747cd2
- fix invocation of testbzr when giving explicit bzr location

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import difflib, sys, struct
30
30
from cStringIO import StringIO
31
31
 
32
 
def linesplit(a):
33
 
    """Split into two lists: content and line positions"""
34
 
    al, ap = [], []
35
 
    last = 0
36
 
 
37
 
    n = a.find("\n") + 1
38
 
    while n > 0:
39
 
        ap.append(last)
40
 
        al.append(a[last:n])
41
 
        last = n
42
 
        n = a.find("\n", n) + 1
43
 
 
44
 
    # position at the end
45
 
    ap.append(len(a))
46
 
 
47
 
    return (al, ap)
48
 
 
49
 
 
50
32
def diff(a, b):
51
 
    # TODO: Use different splits, perhaps rsync-like, for binary files?
52
 
    
53
 
    (al, ap) = linesplit(a)
54
 
    (bl, bp) = linesplit(b)
55
 
 
56
 
    d = difflib.SequenceMatcher(None, al, bl)
 
33
    d = difflib.SequenceMatcher(None, a, b)
57
34
    
58
35
    ## sys.stderr.write('  ~ real_quick_ratio: %.4f\n' % d.real_quick_ratio())
59
36
    
61
38
        if o == 'equal': continue
62
39
        # a[m:n] should be replaced by b[s:t]
63
40
        if s == t:
64
 
            yield ap[m], ap[n], ''
 
41
            yield m, n, ''
65
42
        else:
66
 
            yield ap[m], ap[n], ''.join(bl[s:t])
 
43
            yield m, n, b[s:t]
67
44
 
68
45
 
69
46
def tobinary(ops):