I am converting a script to use Gtk3 using the migration guide (Porting GTK2 to GTK3). I converted my import pygtk
to a from gi.repository import Gtk
and so on...
I'm stuck because the glade module was loaded from module gtk:
import gtk
import gtk.glade
but there's no way now to do that anymore.
Note that I would only need a replacement for gtk.glade.XML()
...
glade-interface
:) – Scottscotti