Author: russellm
Date: 2008-08-24 04:01:50 -0500 (Sun, 24 Aug 2008)
New Revision: 8518

Modified:
   django/trunk/docs/ref/request-response.txt
Log:
Fixed #8486: Corrected some file attribute names in the request/response docs. 
Thanks to mrsanders for the report.

Modified: django/trunk/docs/ref/request-response.txt
===================================================================
--- django/trunk/docs/ref/request-response.txt  2008-08-24 08:51:33 UTC (rev 
8517)
+++ django/trunk/docs/ref/request-response.txt  2008-08-24 09:01:50 UTC (rev 
8518)
@@ -112,9 +112,9 @@
     attributes:
 
         * ``read(num_bytes=None)`` -- Read a number of bytes from the file.
-        * ``file_name`` -- The name of the uploaded file.
-        * ``file_size`` -- The size, in bytes, of the uploaded file.
-        * ``chunk()`` -- A generator that yields sequential chunks of data.
+        * ``name`` -- The name of the uploaded file.
+        * ``size`` -- The size, in bytes, of the uploaded file.
+        * ``chunks(chunk_size=None)`` -- A generator that yields sequential 
chunks of data.
 
     See :ref:`topics-files` for more information.
 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to