1
2 """
3
4 @author: Fabio Erculiani <lxnay@sabayonlinux.org>
5 @contact: lxnay@sabayonlinux.org
6 @copyright: Fabio Erculiani
7 @license: GPL-2
8
9 B{Entropy Framework SystemSettings module}.
10
11 SystemSettings is a singleton, pluggable interface which contains
12 all the runtime settings (mostly parsed from configuration files
13 and inherited from entropy.const -- which contains almost all the
14 default values).
15 SystemSettings works as a I{dict} object. Due to limitations of
16 multiple inherittance when using the Singleton class, SystemSettings
17 ONLY mimics a I{dict} AND it's not a subclass of it.
18
19 """
20