Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tautils.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2010-11-16 14:46:11 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-11-16 14:46:11 (GMT)
commit3c36b15735c3313a76e08f1f162b278adfa8ba42 (patch)
tree576700d8536c75c66529681c86bffa393eef1763 /TurtleArt/tautils.py
parent7ebe6872eba46296baa4d2a04b263f915d2aa2af (diff)
cleaned up encapsulation problem
Diffstat (limited to 'TurtleArt/tautils.py')
-rw-r--r--TurtleArt/tautils.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/TurtleArt/tautils.py b/TurtleArt/tautils.py
index 3445b3e..7139f3b 100644
--- a/TurtleArt/tautils.py
+++ b/TurtleArt/tautils.py
@@ -809,13 +809,3 @@ def get_hardware():
return XO1
else:
return UNKNOWN
-
-
-def walk_stack(tw, blk):
- """ Convert blocks to logo psuedocode. """
- top = find_top_block(blk)
- if blk == top:
- code = tw.lc.run_blocks(top, tw.block_list.list, False)
- return code
- else:
- return []