--- gnome-tweak-tool.original 2013-11-12 13:28:36.683588747 -0700 +++ gnome-tweak-tool 2013-11-12 13:33:49.395595394 -0700 @@ -19,6 +19,15 @@ import locale import gettext +# Hack to force GIL creation +# See: https://bugzilla.gnome.org/show_bug.cgi?id=709223 +# See: https://bugzilla.gnome.org/show_bug.cgi?id=710530 +# +# Original commit: https://git.gnome.org/browse/gnome-tweak-tool/commit/?h=gnome-3-10&id=757c4e1eb06031cf1d066047a8032dc071a8843c +# +import threading +threading.Thread(target=lambda: None).start() + import gi gi.require_version("Gtk", "3.0")