summaryrefslogtreecommitdiffstats
path: root/tests/testmodule.py
blob: 8761ecfc630156b8b2b5df9ae040aaa93f5a4665 (plain)
1
2
3
4
5
6
7
8
9
import gobject
import gtk

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

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