This commit is contained in:
Matt Robenolt 2014-04-29 18:46:43 +00:00
commit e49acb86b4

View File

@ -418,3 +418,9 @@ class Request(object):
Proxy other attributes to the underlying HttpRequest object.
"""
return getattr(self._request, attr)
def __setattr__(self, attr, value):
"""
Proxy other attributes to the underlying HttpRequest object.
"""
return setattr(self._request, attr, value)