logilab.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 ('_').
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.
logilab.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
logilab.common.decorators.wproperty:
Simple descriptor expecting to take a modifier function as first argument
and looking for a _<function name> to retrieve the attribute.