diff options
| author | Michael Merickel <michael@merickel.org> | 2014-05-05 22:55:39 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2014-05-05 22:55:39 -0500 |
| commit | 87ee3d32213325f6fa712cd1772a53a60fd72e42 (patch) | |
| tree | 4d145e4adc50ec67d0d84901e8b4f0e484663ee8 | |
| parent | f9bc568657f316f20b5f576085472b80dec15cba (diff) | |
| parent | 1e5c58acf871f7e95e3b86e9cac9b0a2c889ea5f (diff) | |
| download | pyramid-87ee3d32213325f6fa712cd1772a53a60fd72e42.tar.gz pyramid-87ee3d32213325f6fa712cd1772a53a60fd72e42.tar.bz2 pyramid-87ee3d32213325f6fa712cd1772a53a60fd72e42.zip | |
Merge pull request #1335 from flibustenet/patch-3
Order of response_callback in the docstring
| -rw-r--r-- | pyramid/request.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/request.py b/pyramid/request.py index f8514066e..6318049ee 100644 --- a/pyramid/request.py +++ b/pyramid/request.py @@ -59,8 +59,8 @@ class CallbackMethodsMixin(object): called if an exception happens in application code, or if the response object returned by :term:`view` code is invalid. - All response callbacks are called *after* the - :class:`pyramid.events.NewResponse` event is sent. + All response callbacks are called *after* the tweens and + *before* the :class:`pyramid.events.NewResponse` event is sent. Errors raised by callbacks are not handled specially. They will be propagated to the caller of the :app:`Pyramid` |
