equal
deleted
inserted
replaced
71 has_node = repo.changelog.hasnode |
71 has_node = repo.changelog.hasnode |
72 anyinc = any(not has_node(n) for n in heads) |
72 anyinc = any(not has_node(n) for n in heads) |
73 return (list(common), anyinc, heads or list(srvheads)) |
73 return (list(common), anyinc, heads or list(srvheads)) |
74 |
74 |
75 |
75 |
76 class outgoing(object): |
76 class outgoing: |
77 """Represents the result of a findcommonoutgoing() call. |
77 """Represents the result of a findcommonoutgoing() call. |
78 |
78 |
79 Members: |
79 Members: |
80 |
80 |
81 ancestorsof is a list of the nodes whose ancestors are included in the |
81 ancestorsof is a list of the nodes whose ancestors are included in the |