doc(request): Add note about overriding req.path

This commit is contained in:
Kurt Griffiths
2016-10-18 11:02:50 -06:00
parent 912fd464f1
commit 7c422d8209

View File

@@ -143,6 +143,10 @@ class Request(object):
relative_uri (str): The path + query string portion of the full URI.
path (str): Path portion of the request URL (not including query
string).
Note:
`req.path` may be set to a new value by a `process_request()`
middleware method in order to influence routing.
query_string (str): Query string portion of the request URL, without
the preceding '?' character.
uri_template (str): The template for the route that was matched for