diff options
| author | Chris McDonough <chrism@plope.com> | 2016-02-09 20:47:39 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2016-02-09 20:47:39 -0500 |
| commit | 7d8175fe8f893668f6061e2a26f9c673c2f00ccc (patch) | |
| tree | d97e38ad7c599f87e795ef937ac5747c3fc3ace2 | |
| parent | ff3dd9e9431035b479136abcc761a8f20341e3e2 (diff) | |
| download | pyramid-7d8175fe8f893668f6061e2a26f9c673c2f00ccc.tar.gz pyramid-7d8175fe8f893668f6061e2a26f9c673c2f00ccc.tar.bz2 pyramid-7d8175fe8f893668f6061e2a26f9c673c2f00ccc.zip | |
docs about what happens when no excview can be found
| -rw-r--r-- | pyramid/view.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/view.py b/pyramid/view.py index 0f1a5e41c..edf3d8585 100644 --- a/pyramid/view.py +++ b/pyramid/view.py @@ -586,7 +586,8 @@ class ViewMethodsMixin(object): object that this method is attached to as the ``request``, and ``True`` for ``secure``. - This method returns a :term:`response` object.""" + This method returns a :term:`response` object or ``None`` if no + matching exception view can be found..""" if request is None: request = self |
