Show More
@@ -87,7 +87,7 def _revdescendants(repo, revs, followfi | |||||
87 |
|
87 | |||
88 | return generatorset(iterate(), iterasc=True) |
|
88 | return generatorset(iterate(), iterasc=True) | |
89 |
|
89 | |||
90 | def reachablerootspure(repo, minroot, roots, heads, includepath): |
|
90 | def _reachablerootspure(repo, minroot, roots, heads, includepath): | |
91 | """return (heads(::<roots> and ::<heads>)) |
|
91 | """return (heads(::<roots> and ::<heads>)) | |
92 |
|
92 | |||
93 | If includepath is True, return (<roots>::<heads>).""" |
|
93 | If includepath is True, return (<roots>::<heads>).""" | |
@@ -137,7 +137,7 def reachableroots(repo, roots, heads, i | |||||
137 | try: |
|
137 | try: | |
138 | revs = repo.changelog.reachableroots(minroot, heads, roots, includepath) |
|
138 | revs = repo.changelog.reachableroots(minroot, heads, roots, includepath) | |
139 | except AttributeError: |
|
139 | except AttributeError: | |
140 | revs = reachablerootspure(repo, minroot, roots, heads, includepath) |
|
140 | revs = _reachablerootspure(repo, minroot, roots, heads, includepath) | |
141 | revs = baseset(revs) |
|
141 | revs = baseset(revs) | |
142 | revs.sort() |
|
142 | revs.sort() | |
143 | return revs |
|
143 | return revs |
General Comments 0
You need to be logged in to leave comments.
Login now