summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/http/multipartparser.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index adb4e08dbe..5f08924df2 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -566,11 +566,7 @@ class BoundaryIter:
def exhaust(stream_or_iterable):
- """
- Completely exhausts an iterator or stream.
-
- Raise a MultiPartParserError if the argument is not a stream or an iterable.
- """
+ """Exhaust an iterator or stream."""
try:
iterator = iter(stream_or_iterable)
except TypeError: