commandHandlers.CommandHandler:
Some applications have different ways to start or be called,
depending on either OS or application version; this base class
defines the default behavior.
qb.backend.logParser.LogParser:
The base class for log parsers in Qube, it provides all the
functionality needed with the exception of calculating in-frame
progress.
qb.utils.files.WorkerConfigFile:
A class to read and write the qbwrk.conf file on the supervisor; this file contains blocks
herein referred to as "stanzas" for each template or host definition.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.