(self,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 |
| 185 | def findall(self,path): |
| 186 | return [xml(elt) for elt in self.__content.findall(path)] |
| 187 | def join(self,iterable): |
no test coverage detected