summaryrefslogtreecommitdiff
path: root/django/http/request.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/http/request.py')
-rw-r--r--django/http/request.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/django/http/request.py b/django/http/request.py
index 3440e3b95d..4e4447f35f 100644
--- a/django/http/request.py
+++ b/django/http/request.py
@@ -346,11 +346,7 @@ class HttpRequest:
raise UnreadablePostError(*e.args) from e
def __iter__(self):
- while True:
- buf = self.readline()
- if not buf:
- break
- yield buf
+ return iter(self.readline, b'')
def xreadlines(self):
warnings.warn(