mirror of
https://github.com/django/django.git
synced 2025-02-01 21:29:24 +00:00
Simplified HttpRequest.__iter__().
This commit is contained in:
parent
e7d7d47b93
commit
bcdd9149d4
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user