Я написал небольшой фрагмент, который вычисляет длину пути для данного node (например, его расстояние до корня node):
def node_depth(node, depth=0, colored_nodes=set()):
"""
Return the length of the path in the parse tree from C{node} position
up to the root node. Effectively tests if C{node} is inside a circle
and, if so, returns -1.
"""
if node.mother is None:
return depth
mother = node.mother
if mother.id in colored_nodes:
return -1
colored_nodes.add(node.id)
return node_depth(mother, depth + 1, colored_nodes)
Теперь есть что-то странное, что происходит с этой функцией (по крайней мере, это странно для меня): Calling node_depth впервые возвращает правильное значение. Однако, вызывая его второй раз с тем же node, возвращает -1. Набор color_nodes пуст в первом вызове, но содержит все node -ID во втором вызове, который был добавлен во время первого:
print node_depth(node) # --> 9
# initially colored nodes --> set([])
print node_depth(node) # --> -1
# initially colored nodes --> set([1, 2, 3, 38, 39, 21, 22, 23, 24])
print node_depth(node, colored_nodes=set()) # --> 9
print node_depth(node, colored_nodes=set()) # --> 9
Мне не хватает какой-то специфической для Python вещи, и это действительно должно быть так?
Спасибо заранее,
Йена