Docs - returningdelete
07/31/2010: SUIT 2.0.1 and Rulebox 1.1.0 released.
Available Since: Rulebox for Python (1.0.0)
Delete contents of a tree to break references.
Nothing. The contents of ``tree`` are modified.
from rulebox import templating
tree = ['1', '2', '3', '4']
templating.returningdelete(tree, 1)
# Returns: None. tree is now ['1']





