Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples/copy_from_heap.py
blob: fbca99959757ae6e8c55c8a86708fffb1ac8f6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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 FILO heap will be copied to the clipboard.


def myblock(tw, x):  # second argument is ignored
    ''' Copy heap to clipboard '''

    from gtk import Clipboard
    from TurtleArt.tautils import data_to_string

    Clipboard().set_text(data_to_string(tw.lc.heap))