Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/talogo.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-02-17 17:23:17 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-02-17 17:23:17 (GMT)
commit139aa204009eee0a692efe9a0be28e50e2632967 (patch)
treea2bfee8ed06f93c2c6c08c58d6cea38b4a7727fd /talogo.py
parente76820a309001324f912ef8e0d51f5305da18ac3 (diff)
more sample updates
Diffstat (limited to 'talogo.py')
-rw-r--r--talogo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/talogo.py b/talogo.py
index 41f76b7..4678c01 100644
--- a/talogo.py
+++ b/talogo.py
@@ -678,16 +678,16 @@ class LogoCode:
self.arglist.append(self.iresult)
if self.cfun.rprim:
if type(self.cfun.fcn) == self.listtype:
- print "evalsym rprim list: ", token
+ # print "evalsym rprim list: ", token
self.icall(self.ufuncall, self.cfun.fcn)
yield True
else:
- print "evalsym rprim: ", token
+ # print "evalsym rprim: ", token
self.icall(self.cfun.fcn, *self.arglist)
yield True
result = None
else:
- print "evalsym: ", token
+ # print "evalsym: ", token
result = self.cfun.fcn(self, *self.arglist)
self.cfun, self.arglist = oldcfun, oldarglist
if self.arglist is not None and result == None: