diff -r 9bfe68357c01 -r bb1bd9ee323d mercurial/graphmod.py --- a/mercurial/graphmod.py Sat Oct 11 01:39:20 2014 -0700 +++ b/mercurial/graphmod.py Wed Oct 08 02:43:51 2014 -0700 @@ -37,11 +37,10 @@ lowestrev = revs.min() gpcache = {} - knownrevs = revs for rev in revs: ctx = repo[rev] parents = sorted(set([p.rev() for p in ctx.parents() - if p.rev() in knownrevs])) + if p.rev() in revs])) mpars = [p.rev() for p in ctx.parents() if p.rev() != nullrev and p.rev() not in parents]