Has threading in GTK w/ Python changed in PyGObject introspection? Has threading in GTK w/ Python changed in PyGObject introspection? python python

Has threading in GTK w/ Python changed in PyGObject introspection?


I managed to answer my own question by poking through some Gnome programs written in Python (Gnome Sudoku, in this case, which actually has helped me a couple of times).

The trick is that you have to call GObject.threads_init() at the beginning of your code, not GLib.thread_init() as the C documentation implies.