Django

Code

Changeset 7970

Show
Ignore:
Timestamp:
07/18/08 20:07:17 (4 months ago)
Author:
russellm
Message:

Fixed #7782 -- Corrected documentation to refer to chunks(), rather than the deprecated chunk().

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/upload_handling.txt

    r7862 r7970  
    7373        larger than 2.5 megabytes, but that's configurable; see below. 
    7474 
    75     ``UploadedFile.chunk()`` 
     75    ``UploadedFile.chunks()`` 
    7676        A generator returning chunks of the file. If ``multiple_chunks()`` is 
    7777        ``True``, you should use this method in a loop instead of ``read()``.