import gobject def ThrowException(): raise Exception('Exception that won't exit') return False gobject.idle_add(ThrowException) l = gobject.MainLoop() print 'Starting mainloop' l.run() print 'This ...