wtforms.meta.DefaultMeta:
This is the default Meta class which defines all the default values
and therefore also the 'API' of the class Meta interface.
sqlalchemy.engine.interfaces.Dialect:
Define the behavior of a specific database and DB-API combination.
sqlalchemy.engine.default.DefaultDialect:
Default implementation of Dialect
coprs.rmodels.TimedStatEvents:
Wraps hset structure, where: **key** - name of event, fix prefix
specifying events type **member** - bucket representing one day
**score** - events count
flask.sessions.SessionInterface:
The basic interface you have to implement in order to replace the
default session interface which uses werkzeug's securecookie
implementation.
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.
werkzeug.datastructures.CallbackDict:
A dict that calls a function passed every time something is
changed.