summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-25 13:00:00 -0500
committerTim Graham <timograham@gmail.com>2017-01-25 13:00:00 -0500
commit90db4bb0d72e4731052bd33500840fff00834768 (patch)
treedbf70ebf102d8bb9710fb622411a0afac8166016 /django/http/multipartparser.py
parentd6eaf7c0183cd04b78f2a55e1d60bb7e59598310 (diff)
Corrected http.multipartparser.exhaust() docstring.
MultiPartParserError was removed in ebf34c3cdcd2c75349c60a064427ac255958bf9b.
Diffstat (limited to 'django/http/multipartparser.py')
-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: