equal
deleted
inserted
replaced
138 |
138 |
139 def names(self, repo, node): |
139 def names(self, repo, node): |
140 """method that returns a (sorted) list of names in a namespace that |
140 """method that returns a (sorted) list of names in a namespace that |
141 match a given node""" |
141 match a given node""" |
142 return sorted(self.nodemap(repo, node)) |
142 return sorted(self.nodemap(repo, node)) |
|
143 |
|
144 def nodes(self, repo, name): |
|
145 """method that returns a list of nodes in a namespace that |
|
146 match a given name. |
|
147 |
|
148 """ |
|
149 return sorted(self.namemap(repo, name)) |