mercurial/linelog.py
changeset 51295 011eec5a66b2
parent 49284 d44e3c45f0e4
equal deleted inserted replaced
51294:7d3b92e8df13 51295:011eec5a66b2
    43 
    43 
    44 
    44 
    45 @attr.s
    45 @attr.s
    46 class annotateresult:
    46 class annotateresult:
    47     rev = attr.ib()
    47     rev = attr.ib()
    48     lines = attr.ib()
    48     lines = attr.ib(type=bytearray)
    49     _eof = attr.ib()
    49     _eof = attr.ib()
    50 
    50 
    51     def __iter__(self):
    51     def __iter__(self):
    52         return iter(self.lines)
    52         return iter(self.lines)
    53 
    53