summaryrefslogtreecommitdiff
path: root/django/http/request.py
diff options
context:
space:
mode:
authorcoagulant <baryshev@gmail.com>2013-11-03 01:02:56 +0400
committerTim Graham <timograham@gmail.com>2013-11-02 18:20:39 -0400
commit3bc0d46a840f17dce561daca8a6b8690b2cf5d0a (patch)
treec25954abbde0c4c06af7f862effcd351047cddf9 /django/http/request.py
parent2a03a9a9a1c4517be75e72899e545b0bc9dd0688 (diff)
downloaddjango-3bc0d46a840f17dce561daca8a6b8690b2cf5d0a.tar.gz
Fixed all E261 warnings
Diffstat (limited to 'django/http/request.py')
-rw-r--r--django/http/request.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/django/http/request.py b/django/http/request.py
index 07ab6cb27d..4d11fb21e0 100644
--- a/django/http/request.py
+++ b/django/http/request.py
@@ -249,13 +249,13 @@ class HttpRequest(object):
else:
self._post, self._files = QueryDict('', encoding=self._encoding), MultiValueDict()
- ## File-like and iterator interface.
- ##
- ## Expects self._stream to be set to an appropriate source of bytes by
- ## a corresponding request subclass (e.g. WSGIRequest).
- ## Also when request data has already been read by request.POST or
- ## request.body, self._stream points to a BytesIO instance
- ## containing that data.
+ # File-like and iterator interface.
+ #
+ # Expects self._stream to be set to an appropriate source of bytes by
+ # a corresponding request subclass (e.g. WSGIRequest).
+ # Also when request data has already been read by request.POST or
+ # request.body, self._stream points to a BytesIO instance
+ # containing that data.
def read(self, *args, **kwargs):
self._read_started = True