# HG changeset patch # User casties # Date 1369814932 -7200 # Node ID 014efa0923be28bd5495565d8c07ea76a1a9ef43 # Parent 1acfcaaa5ca38e5ec898e6c6c51f0936f7197da6 removed limit from testing in getSubtreeAsList. diff -r 1acfcaaa5ca3 -r 014efa0923be HashTree.py --- a/HashTree.py Tue May 28 16:36:37 2013 +0200 +++ b/HashTree.py Wed May 29 10:08:52 2013 +0200 @@ -62,7 +62,7 @@ """Return the subtree as flattened list, breadth first, sorted by key.""" q = [self] sub = [] - while len(q) > 0 and len(q) < 100: + while len(q) > 0: node = q.pop(0) if node.value is not None: sub.append(node.value)