diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-01-23 21:27:14 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-01-23 21:27:14 +0200 |
| commit | 3778e8fc2ff2f26d768c8bf6ea2563349a83acc2 (patch) | |
| tree | adcf5fd8daceb0df00cc675fb92d76554dd7ea5e | |
| parent | 0b23b34cf7f759d7f2895696b8ec07c3a4d1e80a (diff) | |
| download | pyramid-3778e8fc2ff2f26d768c8bf6ea2563349a83acc2.tar.gz pyramid-3778e8fc2ff2f26d768c8bf6ea2563349a83acc2.tar.bz2 pyramid-3778e8fc2ff2f26d768c8bf6ea2563349a83acc2.zip | |
improve paragraph
inspired by https://github.com/Pylons/pyramid/pull/815#discussion_r2737923
| -rw-r--r-- | pyramid/config/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyramid/config/__init__.py b/pyramid/config/__init__.py index 769da4cc5..d662c7d3a 100644 --- a/pyramid/config/__init__.py +++ b/pyramid/config/__init__.py @@ -147,12 +147,12 @@ class Configurator( authorization policy is supplied without also supplying an authentication policy (authorization requires authentication). - If ``renderers`` is passed, it should be a list of tuples - representing a set of :term:`renderer` factories which should be - configured into this application (each tuple representing a set of + If ``renderers`` is ``None`` (the default), a default set of + :term:`renderer` factories is used. Else, it should be a list of + tuples representing a set of renderer factories which should be + configured into this application, and each tuple representing a set of positional values that should be passed to - :meth:`pyramid.config.Configurator.add_renderer`). If - it is ``None``, a default set of renderer factories is used. + :meth:`pyramid.config.Configurator.add_renderer`. If ``debug_logger`` is not passed, a default debug logger that logs to a logger will be used (the logger name will be the package name of the |
