mercurial/patch.py
changeset 43787 be8552f25cab
parent 43735 7eb701e355bd
child 43906 727cf6acadfe
equal deleted inserted replaced
43786:421ea5772039 43787:be8552f25cab
  1568             newstart -= 1
  1568             newstart -= 1
  1569         return old, oldstart, new, newstart
  1569         return old, oldstart, new, newstart
  1570 
  1570 
  1571 
  1571 
  1572 class binhunk(object):
  1572 class binhunk(object):
  1573     b'A binary patch file.'
  1573     """A binary patch file."""
  1574 
  1574 
  1575     def __init__(self, lr, fname):
  1575     def __init__(self, lr, fname):
  1576         self.text = None
  1576         self.text = None
  1577         self.delta = False
  1577         self.delta = False
  1578         self.hunk = [b'GIT binary patch\n']
  1578         self.hunk = [b'GIT binary patch\n']