(self,*tag_list)
| 175 | def __path_from_list(self,tag_list): |
| 176 | return './/' + '//'.join(self.__prefix + tag for tag in tag_list) |
| 177 | def nav(self,*tag_list): |
| 178 | path = self.__path_from_list(tag_list) |
| 179 | return self.find(path) |
| 180 | def navlist(self,*tag_list): |
| 181 | return self.findall(self.__path_from_list(tag_list)) |
| 182 | def find(self,path): |
nothing calls this directly
no test coverage detected