Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/taexportlogo.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-02-28 01:49:23 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-02-28 01:49:23 (GMT)
commit4e72a888bf9084037d3a3b2f8673b9086cd273cb (patch)
tree851fba2875e067921df1b564ca0071758e680722 /taexportlogo.py
parentb382cb9c22a4dbb46a587a93fc2cd286f0ea5894 (diff)
replaced re.sub with .replace
Diffstat (limited to 'taexportlogo.py')
-rw-r--r--taexportlogo.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/taexportlogo.py b/taexportlogo.py
index bb35b5f..5166929 100644
--- a/taexportlogo.py
+++ b/taexportlogo.py
@@ -20,7 +20,6 @@
import tawindow
import talogo
-import re
import math
def save_logo(self, tw):
@@ -124,14 +123,14 @@ tasetshade :shade \r"
# transalate some TA terms into UCB Logo
if namedstack == 1:
this_stack += "to "
- this_stack += re.sub("\s","_",d[2:])
+ this_stack += d[2:].replace(" ","_")
this_stack += "\r"
stack = 1
namedstack = 0
elif namedbox == 1:
if d[0:2] == "#s":
this_stack += "make \""
- this_stack += re.sub("\s","_",d[2:])
+ this_stack += d[2:].replace(" ","_")
this_stack += " "
this_stack += myvar
namedbox = 0
@@ -139,12 +138,12 @@ tasetshade :shade \r"
else:
myvar += d
elif refstack == 1:
- this_stack += re.sub("\s","_",d[2:])
+ this_stack += d[2:].replace(" ","_")
this_stack += " "
refstack = 0
elif refbox == 1:
this_stack += ":"
- this_stack += re.sub("\s","_",d[2:])
+ this_stack += d[2:].replace(" ","_")
refbox = 0
elif d == "stack":
refstack = 1
@@ -287,7 +286,11 @@ def walk_stack(self, tw, spr):
top = tawindow.find_top_block(spr)
if spr == top:
# only walk the stack if the block is the top block
- return talogo.run_blocks(tw.lc, top, tawindow.blocks(tw), False)
+ code = talogo.run_blocks(tw.lc, top, tawindow.blocks(tw), False)
+ print ">> "
+ print code
+ print " <<"
+ return code
else:
# not top of stack, then return empty list
return []