(*args, **kwargs)
| 4 | from gi.repository import Gtk, GLib |
| 5 | |
| 6 | def _main_quit(*args, **kwargs): |
| 7 | Gtk.main_quit() |
| 8 | return False |
| 9 | |
| 10 | def inputhook(context): |
| 11 | GLib.io_add_watch(context.fileno(), GLib.PRIORITY_DEFAULT, GLib.IO_IN, _main_quit) |
nothing calls this directly
no outgoing calls
no test coverage detected