(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): |
| 183 | elt = self.__content.find(path) |
| 184 | return xml(elt) if elt != None else None |
nothing calls this directly
no test coverage detected