Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples/paste_to_heap.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-07-27 22:38:22 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-07-27 22:38:22 (GMT)
commita308a5425f6f7bed7fc15ba43d9bf3f1894083fa (patch)
treebd6a6c37615a6a69a8d391b0dc4e796c82638dd0 /pysamples/paste_to_heap.py
parentbf2d9ffa0052fbe2a025d871b9b3c5e91e9c7ff2 (diff)
remove extra stuffv187
Diffstat (limited to 'pysamples/paste_to_heap.py')
-rw-r--r--pysamples/paste_to_heap.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/pysamples/paste_to_heap.py b/pysamples/paste_to_heap.py
deleted file mode 100644
index 0371078..0000000
--- a/pysamples/paste_to_heap.py
+++ /dev/null
@@ -1,21 +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 contents of the clipboard will be appended to
-# the FILO heap.
-
-
-def myblock(tw, x): # ignore second argument
- ''' Paste from clipboard to heap '''
-
- from gtk import Clipboard
- from tautils import data_from_string
-
- text = Clipboard().wait_for_text()
- if text is not None:
- for val in data_from_string(text):
- tw.lc.heap.append(val)
- tw.lc.update_label_value('pop', val)