Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-02-12 18:57:52 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-02-12 18:57:52 (GMT)
commit9fed2068a96312477d638a7cecb10e90295b061e (patch)
treebe57e81cff9d02fdd94c4ece6cbf8a844945679b /tawindow.py
parent5a32ba0d0341edd31b9217e13cfde885db271268 (diff)
cleaned some comments
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/tawindow.py b/tawindow.py
index 04eea3e..439c76d 100644
--- a/tawindow.py
+++ b/tawindow.py
@@ -1253,7 +1253,13 @@ class TurtleArtWindow():
self._run_stack(blk)
"""
- From the top, find and uncollapse any collapsible stacks on forks.
+ Collapsible stacks live between 'sandwichtop' and 'sandwichbottom' blocks
+ What follows are a number of utilities for managing collapsible stacks.
+ Alas, corner-cases abound.
+ """
+
+ """
+ From the top, find and restore any collapsible stacks on forks.
"""
def _uncollapse_forks(self, top, looping=False):
if top == None:
@@ -1314,7 +1320,7 @@ class TurtleArtWindow():
return None
"""
- Find the sandwich bottom below this block.
+ Find the sandwich top below this block.
"""
def _find_sandwich_top_below(self, blk):
if blk.name == 'sandwichtop':
@@ -1340,7 +1346,6 @@ class TurtleArtWindow():
if not hit_bottom and b == bot:
hit_bottom = True
- print "collapsing stack from %s" % (str(b))
# Replace 'sandwichbottom' shape with 'sandwichcollapsed' shape
if len(b.values) == 0:
b.values.append(1)