[1.0.X]: Fixed #8643 -- Corrected docstrings of `MultiPartParser`, thanks KayEss.

Backport of r10213 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2009-03-30 21:01:08 +00:00
parent 487a7fdcce
commit b49e39152b
1 changed files with 1 additions and 3 deletions

View File

@ -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.