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

Method removeList

recipes/Python/577898_23_Tree/recipe-577898.py:468–471  ·  view source on GitHub ↗

Deletes a list of values from a tree

(self, xs)

Source from the content-addressed store, hash-verified

466 return self
467
468 def removeList(self, xs):
469 """ Deletes a list of values from a tree """
470 if xs is not None and type(xs) is list:
471 for item in xs: self.removeValue(item)

Callers

nothing calls this directly

Calls 1

removeValueMethod · 0.95

Tested by

no test coverage detected