aboutsummaryrefslogtreecommitdiff
path: root/source/testbinarytree.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-19 13:03:04 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-19 13:03:04 +0100
commit85cf121bd14b0e0564ea1bee5dafce175a1bbf2e (patch)
tree809a0b46f518bb6b4a6ad37d323ad89af21b8964 /source/testbinarytree.py
parentRestored favicon. (diff)
downloadnewspipe-85cf121bd14b0e0564ea1bee5dafce175a1bbf2e.tar.gz
newspipe-85cf121bd14b0e0564ea1bee5dafce175a1bbf2e.tar.bz2
newspipe-85cf121bd14b0e0564ea1bee5dafce175a1bbf2e.zip
In and Post order depth traversal.
Diffstat (limited to 'source/testbinarytree.py')
-rw-r--r--source/testbinarytree.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/testbinarytree.py b/source/testbinarytree.py
index d60df372..526ddd7f 100644
--- a/source/testbinarytree.py
+++ b/source/testbinarytree.py
@@ -40,3 +40,4 @@ print("Newest article:")
newest_article = BTree.maxValue(root)
print((newest_article["article_date"].strftime('%Y-%m-%d %H:%M') + \
" - " + newest_article["article_title"]))
+print(BTree)
bgstack15