This commit is contained in:
Willi Richert 2016-10-18 17:44:56 +02:00 коммит произвёл Alona Kharchenko
Родитель ac1a9469ef
Коммит 6b8d5cb72c
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -37,13 +37,15 @@ def dfs_walk(node, visitor):
except AttributeError:
pass
if visitor(node):
accum.append(node)
visited.add(node)
if visitor(node):
accum.append(node)
visited.add(node)
return accum
def find_nodes_by_name(node, node_name):
'''
Finds nodes in the graph starting from `node` and doing a depth-first