summaryrefslogtreecommitdiff
path: root/tests/testmodule.py
blob: 3cff2f28de6351d4ad0439c4332e9e3c05bb0e1e (plain)
1
2
3
4
5
6
7
import gtk

class PyLabel(gtk.Label):
    __gtype_name__ = 'PyLabel'

    def __init__(self):
        gtk.Label.__init__(self, "hello")