diff options
| -rw-r--r-- | CONTRIBUTORS.txt | 4 | ||||
| -rw-r--r-- | pyramid/httpexceptions.py | 1 | ||||
| -rw-r--r-- | pyramid/request.py | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 443503914..7b0364b6d 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -90,7 +90,7 @@ Licensing Exceptions Code committed within the ``docs/`` subdirectory of the Pyramid source control repository and "docstrings" which appear in the documentation -generated by runnning "make" within this directory is licensed under the +generated by running "make" within this directory is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-nc-sa/3.0/us/). @@ -118,3 +118,5 @@ Contributors - Casey Duncan, 2010/12/27 - Rob Miller, 2010/12/28 + +- Marius Gedminas, 2010/12/31 diff --git a/pyramid/httpexceptions.py b/pyramid/httpexceptions.py index 6d05f9475..f56910b53 100644 --- a/pyramid/httpexceptions.py +++ b/pyramid/httpexceptions.py @@ -3,6 +3,7 @@ from webob.exc import status_map # Parent classes from webob.exc import HTTPException +from webob.exc import WSGIHTTPException from webob.exc import HTTPOk from webob.exc import HTTPRedirection from webob.exc import HTTPError diff --git a/pyramid/request.py b/pyramid/request.py index 74418f1bb..475df744a 100644 --- a/pyramid/request.py +++ b/pyramid/request.py @@ -24,7 +24,7 @@ class Request(WebobRequest): argument. The documentation below (save for the ``add_response_callback`` and - ''add_finished_callback`` methods, which are defined in this subclass + ``add_finished_callback`` methods, which are defined in this subclass itself, and the attributes ``context``, ``registry``, ``root``, ``subpath``, ``traversed``, ``view_name``, ``virtual_root`` , and ``virtual_root_path``, each of which is added to the request by the |
