Mercurial > hg
diff contrib/simplemerge @ 5081:ea7b982b6c08
Remove trailing spaces
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 07 Aug 2007 10:24:33 +0200 |
parents | 1ef4445c6506 |
children | abd66eb0889e |
line wrap: on
line diff
--- a/contrib/simplemerge Mon Aug 06 20:25:50 2007 +0200 +++ b/contrib/simplemerge Tue Aug 07 10:24:33 2007 +0200 @@ -28,7 +28,7 @@ class CantReprocessAndShowBase(Exception): pass - + def warn(message): sys.stdout.flush() @@ -50,7 +50,7 @@ """ assert ra[0] <= ra[1] assert rb[0] <= rb[1] - + sa = max(ra[0], rb[0]) sb = min(ra[1], rb[1]) if sa < sb: @@ -69,7 +69,7 @@ return False else: return True - + @@ -149,15 +149,15 @@ yield end_marker + newline else: raise ValueError(what) - - + + def merge_annotated(self): """Return merge with conflicts, showing origin of lines. - Most useful for debugging merge. + Most useful for debugging merge. """ for t in self.merge_regions(): what = t[0] @@ -180,8 +180,8 @@ yield '>>>>\n' else: raise ValueError(what) - - + + @@ -249,15 +249,15 @@ # section a[0:ia] has been disposed of, etc iz = ia = ib = 0 - + for zmatch, zend, amatch, aend, bmatch, bend in self.find_sync_regions(): #print 'match base [%d:%d]' % (zmatch, zend) - + matchlen = zend - zmatch assert matchlen >= 0 assert matchlen == (aend - amatch) assert matchlen == (bend - bmatch) - + len_a = amatch - ia len_b = bmatch - ib len_base = zmatch - iz @@ -294,22 +294,22 @@ # if the same part of the base was deleted on both sides # that's OK, we can just skip it. - + if matchlen > 0: assert ia == amatch assert ib == bmatch assert iz == zmatch - + yield 'unchanged', zmatch, zend iz = zend ia = aend ib = bend - + def reprocess_merge_regions(self, merge_regions): """Where there are conflict regions, remove the agreed lines. - Lines where both A and B have made the same changes are + Lines where both A and B have made the same changes are eliminated. """ for region in merge_regions: @@ -342,7 +342,7 @@ if next_a < region_ia or next_b < region_ib: return 'conflict', None, None, next_a, region_ia, next_b, region_ib mismatch_region = staticmethod(mismatch_region) - + def find_sync_regions(self): """Return a list of sync regions, where both descendents match the base. @@ -397,7 +397,7 @@ ia += 1 else: ib += 1 - + intbase = len(self.base) abase = len(self.a) bbase = len(self.b) @@ -429,7 +429,7 @@ del am[0] else: del bm[0] - + return unc @@ -511,9 +511,9 @@ usage = _('''simplemerge [OPTS] LOCAL BASE OTHER Simple three-way file merge utility with a minimal feature set. - + Apply to LOCAL the changes necessary to go from BASE to OTHER. - + By default, LOCAL is overwritten with the results of this operation. ''')