(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): |
| 188 | """ |
| 189 | Usage: |
no test coverage detected