From a308a5425f6f7bed7fc15ba43d9bf3f1894083fa Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 27 Jul 2013 22:38:22 +0000 Subject: remove extra stuff --- (limited to 'pysamples/paste_to_heap.py') 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) -- cgit v0.9.1