aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/requests.md
diff options
context:
space:
mode:
authorTom Christie2013-08-27 12:37:55 +0100
committerTom Christie2013-08-27 12:37:55 +0100
commitea6eee304c230a9277fdc76f4ac91654e0019b7a (patch)
tree502b95e1c93a70acf4873137a424d77546059500 /docs/api-guide/requests.md
parentb54cbd292c5680f4de0e028ff1cb2a9ab1cd34ff (diff)
downloaddjango-rest-framework-ea6eee304c230a9277fdc76f4ac91654e0019b7a.tar.bz2
Note 'request.session' as available on requests.
Diffstat (limited to 'docs/api-guide/requests.md')
-rw-r--r--docs/api-guide/requests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/requests.md b/docs/api-guide/requests.md
index 39a34fcf..0696fedf 100644
--- a/docs/api-guide/requests.md
+++ b/docs/api-guide/requests.md
@@ -117,7 +117,7 @@ For more information see the [browser enhancements documentation].
# Standard HttpRequest attributes
-As REST framework's `Request` extends Django's `HttpRequest`, all the other standard attributes and methods are also available. For example the `request.META` dictionary is available as normal.
+As REST framework's `Request` extends Django's `HttpRequest`, all the other standard attributes and methods are also available. For example the `request.META` and `request.session` dictionaries are available as normal.
Note that due to implementation reasons the `Request` class does not inherit from `HttpRequest` class, but instead extends the class using composition.