module documentation
(source)

This module provides base support for Twisted to interact with the glib/gtk mainloops.

The classes in this module should not be used directly, but rather you should import gireactor or gtk3reactor for GObject Introspection based applications, or glib2reactor or gtk2reactor for applications using legacy static bindings.

Class ​Glib​Reactor​Base Base class for GObject event loop reactors.
Class ​Glib​Waker Run scheduled events after waking up.
Class ​Portable​Glib​Reactor​Base Base class for GObject event loop reactors that works on Windows.
Function ensure​Not​Imported Check whether the given modules were imported, and if requested, ensure they will not be importable in the future.
def ensureNotImported(moduleNames, errorMessage, preventImports=[]): (source)
Check whether the given modules were imported, and if requested, ensure they will not be importable in the future.
Parameters
module​Names:list of strA list of module names we make sure aren't imported.
error​Message:strMessage to use when raising an ImportError.
prevent​Imports:list of strA list of module name whose future imports should be prevented.
Raises
ImportErrorwith given error message if a given module name has already been imported.