summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2009-03-30 20:59:33 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2009-03-30 20:59:33 +0000
commit1f8c4ce60940deaf124eedc112fd9b5c1b317a4e (patch)
treec73ad4d3efd7147d0b5b43d30fb6e7ba66f7079c /django/http/multipartparser.py
parent86c5142461a9467ff5f1b186c6841866055b7bd9 (diff)
Fixed #8643 -- Corrected docstrings of `MultiPartParser`, thanks KayEss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http/multipartparser.py')
-rw-r--r--django/http/multipartparser.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index 2049289a0b..048c9aaea2 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -34,8 +34,6 @@ class MultiPartParser(object):
``MultiValueDict.parse()`` reads the input stream in ``chunk_size`` chunks
and returns a tuple of ``(MultiValueDict(POST), MultiValueDict(FILES))``. If
- ``file_upload_dir`` is defined files will be streamed to temporary files in
- that directory.
"""
def __init__(self, META, input_data, upload_handlers, encoding=None):
"""
@@ -44,7 +42,7 @@ class MultiPartParser(object):
:META:
The standard ``META`` dictionary in Django request objects.
:input_data:
- The raw post data, as a bytestring.
+ The raw post data, as a file-like object.
:upload_handler:
An UploadHandler instance that performs operations on the uploaded
data.