diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-27 21:45:20 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-27 21:45:20 +0100 |
commit | efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf (patch) | |
tree | 41f5d543f10d90d8153ed7c4f19eb489a088057c /source | |
parent | Chech if there is any subscription. (diff) | |
download | newspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.tar.gz newspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.tar.bz2 newspipe-efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf.zip |
don't print the tree.
Diffstat (limited to 'source')
-rw-r--r-- | source/testbinarytree.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/testbinarytree.py b/source/testbinarytree.py index 67b19368..84670ca1 100644 --- a/source/testbinarytree.py +++ b/source/testbinarytree.py @@ -1,3 +1,4 @@ +#! /usr/bin/env python # -*- coding: utf-8 -*- import time @@ -41,4 +42,4 @@ print("Newest article:") newest_article = tree.maxValue(tree.root) print((newest_article["article_date"].strftime('%Y-%m-%d %H:%M') + \ " - " + newest_article["article_title"])) -print(tree)
\ No newline at end of file +#print(tree)
\ No newline at end of file |