[Python-checkins] r58200 - python/branches/release25-maint/Doc/lib/libcgi.tex

sean.reifschneider python-checkins at python.org
Wed Sep 19 01:38:15 CEST 2007


Author: sean.reifschneider
Date: Wed Sep 19 01:38:15 2007
New Revision: 58200

Modified:
   python/branches/release25-maint/Doc/lib/libcgi.tex
Log:
issue1172: Documentation of "done" attribute in cgi module.


Modified: python/branches/release25-maint/Doc/lib/libcgi.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libcgi.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libcgi.tex	Wed Sep 19 01:38:15 2007
@@ -162,6 +162,11 @@
         linecount = linecount + 1
 \end{verbatim}
 
+If an error is encountered when obtaining the contents of an uploaded file
+(for example, when the user interrupts the form submission by clicking on
+a Back or Cancel button) the \member{done} attribute of the object for the
+field will be set to the value -1.
+
 The file upload draft standard entertains the possibility of uploading
 multiple files from one field (using a recursive
 \mimetype{multipart/*} encoding).  When this occurs, the item will be


More information about the Python-checkins mailing list