common.table.TableStyleSheet:
A simple Table stylesheet
Rules are expressions where cells are defined by the row_index
and col_index separated by an underscore ('_').
exceptions.BaseException:
Common base class for all exceptions
exceptions.Exception:
Common base class for all non-exit exceptions.
common.clcommands.BadCommandUsage:
Raised when an unknown command is used or when a command is not
correctly used (bad options, too much / missing arguments...).
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.
common.decorators.iclassmethod:
Descriptor for method which should be available as class method if called
on the class or instance method if called on an instance.
type:
type(object) -> the object's type type(name, bases, dict) ->
a new type
common.decorators.wproperty:
Simple descriptor expecting to take a modifier function as first argument
and looking for a _<function name> to retrieve the attribute.