From eed7427d16e4171916aa0aec5f9d120400abbade Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Thu, 09 Jul 2009 23:02:58 +0000 Subject: removed some extranious print statements --- diff --git a/talogo.py b/talogo.py index 9958563..be611fe 100644 --- a/talogo.py +++ b/talogo.py @@ -847,8 +847,6 @@ def show(lc, string): # convert from Turtle coordinates to screen coordinates x = lc.tw.turtle.width/2+int(lc.tw.turtle.xcor) y = lc.tw.turtle.height/2-int(lc.tw.turtle.ycor) - print type(string) - print string if type(string) == str or type(string) == unicode: if string == "media_None": pass @@ -862,10 +860,8 @@ def show(lc, string): draw_text(lc.tw.turtle,string,x,y,lc.tw.textsize,lc.tw.turtle.width) elif type(string) == float: if int(string) == string: - print "int" string = int(string) else: - print "flt" string = float(string*10.0/10.0) draw_text(lc.tw.turtle,string,x,y,lc.tw.textsize,lc.tw.turtle.width) -- cgit v0.9.1