summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authormarkmcclain <mark.mcclain@dreamhost.com>2013-08-08 08:35:27 -0700
committermarkmcclain <mark.mcclain@dreamhost.com>2013-08-08 08:35:27 -0700
commit7cfc975cf351725354fe51fece2f814fe3defe63 (patch)
tree5a0c4958c452fdcbd2f2c84e074571ccfb297b49 /docs
parentb634bfb4736e4387ff12f8c3f8ca43d483aa4aa4 (diff)
parent38c64ff3518470ff668a06725abb4d2f2d5ab7ba (diff)
downloadpecan-7cfc975cf351725354fe51fece2f814fe3defe63.tar.gz
Merge pull request #224 from ryanpetrello/next
Clarify the __force_dict__ configuration directive.
Diffstat (limited to 'docs')
-rw-r--r--docs/source/configuration.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/source/configuration.rst b/docs/source/configuration.rst
index f578ab4..ea4d29d 100644
--- a/docs/source/configuration.rst
+++ b/docs/source/configuration.rst
@@ -177,3 +177,27 @@ if you need to prefix the keys in the returned dictionary.
Config({'app': Config({'errors': {}, 'template_path': '', 'static_root': 'public', [...]
>>> conf.as_dict('prefixed_')
{'prefixed_app': {'prefixed_errors': {}, 'prefixed_template_path': '', 'prefixed_static_root': 'prefixed_public', [...]
+
+
+Dotted Keys and Native Dictionaries
+-----------------------------------
+
+Sometimes you want to specify a configuration option that includes dotted keys.
+This is especially common when configuring Python logging. By passing
+a special key, ``__force_dict__``, individual configuration blocks can be
+treated as native dictionaries.
+
+::
+
+ logging = {
+ 'loggers': {
+ 'root': {'level': 'INFO', 'handlers': ['console']},
+ 'sqlalchemy.engine': {'level': 'INFO', 'handlers': ['console']},
+ '__force_dict__': True
+ }
+ }
+
+ from myapp import conf
+ assert isinstance(conf.logging.loggers, dict)
+ assert isinstance(conf.logging.loggers['root'], dict)
+ assert isinstance(conf.logging.loggers['sqlalchemy.engine'], dict)