Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-07-09 23:02:58 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-07-09 23:02:58 (GMT)
commiteed7427d16e4171916aa0aec5f9d120400abbade (patch)
treee2f6f2a6aea75b28e6c7d201758a52cf086c97c9
parent016c9e1f9beda3f8953841e2e899a83793d974f6 (diff)
removed some extranious print statementsv53
-rw-r--r--talogo.py4
1 files changed, 0 insertions, 4 deletions
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)