~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mdiff.py

  • Committer: Robert Collins
  • Date: 2005-09-27 07:24:40 UTC
  • mfrom: (1185.1.41)
  • Revision ID: robertc@robertcollins.net-20050927072440-1bf4d99c3e1db5b3
pair programming worx... merge integration and weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
# FIXME: doesn't work properly on files without trailing newlines
29
29
 
 
30
import difflib
 
31
import struct
 
32
import sys
30
33
import unittest
31
 
import difflib, sys, struct
32
34
from cStringIO import StringIO
33
35
 
 
36
 
34
37
def linesplit(a):
35
38
    """Split into two lists: content and line positions.
36
39