koapy.compat.pywinauto.importlib

Module Contents

Classes

PyWinAutoFinder

Abstract base class for import finders on sys.meta_path.

PyWinAutoLoader

Abstract base class for import loaders.

class koapy.compat.pywinauto.importlib.PyWinAutoFinder[source]

Bases: importlib.abc.MetaPathFinder

Abstract base class for import finders on sys.meta_path.

find_spec(fullname, path, target=None)[source]
classmethod register()[source]
classmethod unregister()[source]
class koapy.compat.pywinauto.importlib.PyWinAutoLoader[source]

Bases: importlib.abc.Loader

Abstract base class for import loaders.

set_sys_coinit_flags()[source]
reset_sys_coinit_flags()[source]
create_module(spec)[source]

Return a module to initialize and into which to load.

This method should raise ImportError if anything prevents it from creating a new module. It may return None to indicate that the spec should create the new module.

exec_module(module)[source]