mercurial/error.py
branchstable
changeset 48796 c00d3ce4e94b
parent 48363 6a454e7053a1
child 48875 6000f5b25c9b
equal deleted inserted replaced
48776:b84ff512b645 48796:c00d3ce4e94b
   383             message += _(b"(%s)\n") % self.hint
   383             message += _(b"(%s)\n") % self.hint
   384         return message
   384         return message
   385 
   385 
   386 
   386 
   387 class PatchError(Exception):
   387 class PatchError(Exception):
       
   388     __bytes__ = _tobytes
       
   389 
       
   390 
       
   391 class PatchParseError(PatchError):
       
   392     __bytes__ = _tobytes
       
   393 
       
   394 
       
   395 class PatchApplicationError(PatchError):
   388     __bytes__ = _tobytes
   396     __bytes__ = _tobytes
   389 
   397 
   390 
   398 
   391 def getsimilar(symbols, value):
   399 def getsimilar(symbols, value):
   392     # type: (Iterable[bytes], bytes) -> List[bytes]
   400     # type: (Iterable[bytes], bytes) -> List[bytes]