Submitter | Pierre-Yves David |
---|---|
Date | Dec. 24, 2013, 12:32 a.m. |
Message ID | <df0ed06fa7692e4091c0.1387845139@marginatus.fb.com> |
Download | mbox | patch |
Permalink | /patch/3231/ |
State | Accepted |
Commit | b0c14c5d44b1233577d725332210a9eedd314373 |
Headers | show |
Comments
Patch
diff --git a/mercurial/obsolete.py b/mercurial/obsolete.py --- a/mercurial/obsolete.py +++ b/mercurial/obsolete.py @@ -438,11 +438,12 @@ def successormarkers(ctx): def allsuccessors(obsstore, nodes, ignoreflags=0): """Yield node for every successor of <nodes>. Some successors may be unknown locally. - This is a linear yield unsuited to detecting split changesets.""" + This is a linear yield unsuited to detecting split changesets. It includes + initial nodes too.""" remaining = set(nodes) seen = set(remaining) while remaining: current = remaining.pop() yield current