Ticket #8486: 8486.typo.diff

File 8486.typo.diff, 839 bytes (added by Julien Phalip, 16 years ago)
  • django/django/docs/request_response.txt

     
    9898    attributes:
    9999
    100100        * ``read(num_bytes=None)`` -- Read a number of bytes from the file.
    101         * ``file_name`` -- The name of the uploaded file.
    102         * ``file_size`` -- The size, in bytes, of the uploaded file.
    103         * ``chunk()`` -- A generator that yields sequential chunks of data.
     101        * ``name`` -- The name of the uploaded file.
     102        * ``size`` -- The size, in bytes, of the uploaded file.
     103        * ``chunks(chunk_size=None)`` -- A generator that yields sequential chunks of data.
    104104
    105105    See `File Uploads`_ for more information.
    106106   
Back to Top