From efe9d9eea3235bd7b29ad7c8bb6fae01fe00d5bf Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 27 Mar 2013 21:45:20 +0100 Subject: don't print the tree. --- source/testbinarytree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source') 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 -- cgit