mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
[1.11.x] Corrected http.multipartparser.exhaust() docstring.
MultiPartParserError was removed in ebf34c3cdcd2c75349c60a064427ac255958bf9b. Backport of 90db4bb0d72e4731052bd33500840fff00834768 from master
This commit is contained in:
parent
ec0af19f4c
commit
9194df2f55
@ -573,11 +573,7 @@ class BoundaryIter(six.Iterator):
|
|||||||
|
|
||||||
|
|
||||||
def exhaust(stream_or_iterable):
|
def exhaust(stream_or_iterable):
|
||||||
"""
|
"""Exhaust an iterator or stream."""
|
||||||
Completely exhausts an iterator or stream.
|
|
||||||
|
|
||||||
Raise a MultiPartParserError if the argument is not a stream or an iterable.
|
|
||||||
"""
|
|
||||||
try:
|
try:
|
||||||
iterator = iter(stream_or_iterable)
|
iterator = iter(stream_or_iterable)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user