mercurial/context.py
changeset 36690 b529e640015d
parent 36639 334da951a50b
parent 36510 0a7c59a4c835
child 36704 470df8c5b781
equal deleted inserted replaced
36685:2a258985ffeb 36690:b529e640015d
  1077                         needed[p] -= 1
  1077                         needed[p] -= 1
  1078 
  1078 
  1079                 hist[f] = curr
  1079                 hist[f] = curr
  1080                 del pcache[f]
  1080                 del pcache[f]
  1081 
  1081 
  1082         return pycompat.ziplist(hist[base][0], hist[base][1].splitlines(True))
  1082         lineattrs, text = hist[base]
       
  1083         return pycompat.ziplist(lineattrs, mdiff.splitnewlines(text))
  1083 
  1084 
  1084     def ancestors(self, followfirst=False):
  1085     def ancestors(self, followfirst=False):
  1085         visit = {}
  1086         visit = {}
  1086         c = self
  1087         c = self
  1087         if followfirst:
  1088         if followfirst: