From eba2f70c6b95d9d61b5854feea64f0ba1fb620d2 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 30 Jul 2011 02:11:30 +0200 Subject: [PATCH] Clarified a sentence that no longer made sense with the new docs on request objects. --- flask/wrappers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flask/wrappers.py b/flask/wrappers.py index d5f6ed7d..37d972d1 100644 --- a/flask/wrappers.py +++ b/flask/wrappers.py @@ -23,6 +23,10 @@ class Request(RequestBase): It is what ends up as :class:`~flask.request`. If you want to replace the request object used you can subclass this and set :attr:`~flask.Flask.request_class` to your subclass. + + The request object is a :class:`~werkzeug.wrappers.Request` subclass and + provides all of the attributes Werkzeug defines plus a few Flask + specific ones. """ #: the internal URL rule that matched the request. This can be