On 25/06/14 15:35, W. Michael Petullo wrote: > class MyClass (MyPkg.Iface):
This is trying to subclass an interface without also subclassing any concrete object type. You probably want: class MyClass(GObject.Object, MyPkg.Iface): as described, e.g., here: <http://www.micahcarrick.com/writing-plugins-for-gedit-3-in-python.html#example02> S _______________________________________________ gtk-devel-list mailing list gtk-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-devel-list