Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples/load_file_to_heap.py
diff options
context:
space:
mode:
authorPootle daemon <pootle@pootle.sugarlabs.org>2013-10-19 04:30:57 (GMT)
committer Pootle daemon <pootle@pootle.sugarlabs.org>2013-10-19 04:30:57 (GMT)
commit1a04e9c774f54a5778ac64b54c0d9c5df243a9e0 (patch)
tree441e1f1bcc62fc20f744f1935ce18517127dde6c /pysamples/load_file_to_heap.py
parente40e8aedf3d58dd630e55dfe1ed006eadb6ca7c2 (diff)
parentcbb33c54fdc5f1372cc71856b7e5947d181d5063 (diff)
Merge branch 'master' of git.sugarlabs.org:turtleart/mainline
Diffstat (limited to 'pysamples/load_file_to_heap.py')
-rw-r--r--pysamples/load_file_to_heap.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/pysamples/load_file_to_heap.py b/pysamples/load_file_to_heap.py
deleted file mode 100644
index 919d6b5..0000000
--- a/pysamples/load_file_to_heap.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#Copyright (c) 2010-11, Walter Bender, Tony Forster
-
-# This procedure is invoked when the user-definable block on the
-# "extras" palette is selected.
-
-# Usage: Import this code into a Python (user-definable) block; when
-# this code is run, the chooser will be opened for selecting a file
-# from the GNU/Linux file system. The contents of that file will be
-# loaded onto the FILO heap. Data is assumed to be json encoded.
-
-
-def myblock(tw, path):
- ''' Load heap from file (GNOME only) '''
-
- import os
- from TurtleArt.tautils import get_load_name, data_from_file
-
- if type(path) == float:
- path = ''
-
- if not os.path.exists(path):
- path, tw.load_save_folder = get_load_name('.*', tw.load_save_folder)
- if path is None:
- return
-
- data = data_from_file(path)
- if data is not None:
- for val in data:
- tw.lc.heap.append(val)
- tw.lc.update_label_value('pop', tw.lc.heap[-1])