I'am working on GTK in python after creating a CheckButton or Button with:
x = Gtk.CheckButton()
y = Gtk.Button("Config")
I want to check type of x
or y
When use type() it returns
<class 'gi.repository.Gtk.CheckButton'>
or
<class 'gi.overrides.Gtk.Button'>
Is it possible to check It's type in another way ?