equal
deleted
inserted
replaced
1007 return self.fuzzit(self.a, fuzz, toponly) |
1007 return self.fuzzit(self.a, fuzz, toponly) |
1008 |
1008 |
1009 def new(self, fuzz=0, toponly=False): |
1009 def new(self, fuzz=0, toponly=False): |
1010 return self.fuzzit(self.b, fuzz, toponly) |
1010 return self.fuzzit(self.b, fuzz, toponly) |
1011 |
1011 |
1012 class binhunk: |
1012 class binhunk(object): |
1013 'A binary patch file. Only understands literals so far.' |
1013 'A binary patch file. Only understands literals so far.' |
1014 def __init__(self, lr): |
1014 def __init__(self, lr): |
1015 self.text = None |
1015 self.text = None |
1016 self.hunk = ['GIT binary patch\n'] |
1016 self.hunk = ['GIT binary patch\n'] |
1017 self._read(lr) |
1017 self._read(lr) |