MCPcopy Create free account
hub / github.com/ActiveState/code / findall

Method findall

recipes/Python/576445_ElementTree_Wrapper/recipe-576445.py:185–186  ·  view source on GitHub ↗
(self,path)

Source from the content-addressed store, hash-verified

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:

Callers 15

navlistMethod · 0.95
find_replaceFunction · 0.45
parse_unixFunction · 0.45
guessIsBinaryFunction · 0.45
check_valid_mutex_nameFunction · 0.45
searchMethod · 0.45
getProfileMethod · 0.45
pushMethod · 0.45
download_comics_dot_comFunction · 0.45
extract_tableFunction · 0.45
extract_dateFunction · 0.45
extract_timeFunction · 0.45

Calls 1

xmlClass · 0.70

Tested by

no test coverage detected