Mercurial > public > mercurial-scm > hg
comparison mercurial/context.py @ 3223:53e843840349
Whitespace/Tab cleanup
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sun, 01 Oct 2006 19:26:33 +0200 |
parents | 9e8dd6114a4e |
children | dedddde58c5b |
comparison
equal
deleted
inserted
replaced
3222:a5603ad915c5 | 3223:53e843840349 |
---|---|
221 r = f.renamed() | 221 r = f.renamed() |
222 if r: | 222 if r: |
223 pl[0] = (r[0], getlog(r[0]).rev(r[1])) | 223 pl[0] = (r[0], getlog(r[0]).rev(r[1])) |
224 | 224 |
225 return [ getctx(p, n) for p, n in pl if n != -1 ] | 225 return [ getctx(p, n) for p, n in pl if n != -1 ] |
226 | 226 |
227 # find all ancestors | 227 # find all ancestors |
228 needed = {self: 1} | 228 needed = {self: 1} |
229 visit = [self] | 229 visit = [self] |
230 files = [self._path] | 230 files = [self._path] |
231 while visit: | 231 while visit: |