diff options
author | Facundo Batista <facundobatista@gmail.com> | 2008-06-21 18:58:04 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2008-06-21 18:58:04 (GMT) |
commit | a6a4d50efe7dca189e1c89ba38db4e0e1f5a68dd (patch) | |
tree | 03913e97c5b033f1b8b36ff67f28b0c409bbe2e0 /Doc/library/cgi.rst | |
parent | 2da91c375b095a452dd1e81962983e89e3fd0d07 (diff) | |
download | cpython-a6a4d50efe7dca189e1c89ba38db4e0e1f5a68dd.zip cpython-a6a4d50efe7dca189e1c89ba38db4e0e1f5a68dd.tar.gz cpython-a6a4d50efe7dca189e1c89ba38db4e0e1f5a68dd.tar.bz2 |
Now a from submitted via POST that also has a query string
will contain both FieldStorage and MiniFieldStorage items.
Fixes #1817.
Diffstat (limited to 'Doc/library/cgi.rst')
-rw-r--r-- | Doc/library/cgi.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/cgi.rst b/Doc/library/cgi.rst index 4c619e4..17cd750 100644 --- a/Doc/library/cgi.rst +++ b/Doc/library/cgi.rst @@ -165,6 +165,8 @@ data part of type :mimetype:`application/x-www-form-urlencoded`), the items will actually be instances of the class :class:`MiniFieldStorage`. In this case, the :attr:`list`, :attr:`file`, and :attr:`filename` attributes are always ``None``. +A form submitted via POST that also has a query string will contain both +:class:`FieldStorage` and :class:`MiniFieldStorage` items. Higher Level Interface ---------------------- |