| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10... | Pierre Quentel | 2019-09-11 | 1 | -3/+5 |
|
|
* | bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) | matthewbelisle-wf | 2018-10-23 | 1 | -11/+12 |
|
|
* | bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660) | matthewbelisle-wf | 2018-10-19 | 1 | -9/+25 |
|
|
* | bpo-33843: Remove deprecated stuff in cgi module (GH-7662) | INADA Naoki | 2018-06-19 | 1 | -31/+2 |
|
|
* | bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in Fi... | Amber Brown | 2018-05-14 | 1 | -4/+6 |
|
|
* | bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorag... | Pierre Quentel | 2017-05-08 | 1 | -91/+14 |
|
|
* | bpo-30144: Import collections ABC from collections.abc rather than collection... | Serhiy Storchaka | 2017-04-24 | 1 | -1/+1 |
|
|
* | Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patch | Martin Panter | 2016-06-06 | 1 | -1/+1 |
|
|
* | Issue #27076: Doc, comment and tests spelling fixes | Martin Panter | 2016-05-26 | 1 | -1/+1 |
|
|
* | (Merge 3.4) cgi.FieldStorage.read_multi ignores Content-Length | Victor Stinner | 2015-08-18 | 1 | -0/+5 |
|\ |
|
| * | cgi.FieldStorage.read_multi ignores Content-Length | Victor Stinner | 2015-08-18 | 1 | -0/+5 |
|
|
* | | merge 3.4 (#23801) | Benjamin Peterson | 2015-03-29 | 1 | -2/+7 |
|\ \
| |/ |
|
| * | Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage | Donald Stufft | 2015-03-29 | 1 | -2/+7 |
|
|
* | | Issue #20289: cgi.FieldStorage() now supports the context management protocol. | Berker Peksag | 2015-02-06 | 1 | -0/+6 |
|/ |
|
* | remove unused argument (closes #21135) | Benjamin Peterson | 2014-04-03 | 1 | -1/+1 |
|
|
* | merge from 3.3 | Senthil Kumaran | 2014-01-12 | 1 | -2/+12 |
|\ |
|
| * | Issue #19092 - Raise a correct exception when cgi.FieldStorage is given an | Senthil Kumaran | 2014-01-12 | 1 | -2/+12 |
|
|
* | | Closes #17335: remove no-op assignment. | Georg Brandl | 2013-10-13 | 1 | -1/+0 |
|
|
* | | Issue #18394: Explicitly close the file object cgi.FieldStorage | Brett Cannon | 2013-08-23 | 1 | -0/+6 |
|
|
* | | Merge #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 1 | -1/+1 |
|
|
* | | Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data | Serhiy Storchaka | 2013-06-17 | 1 | -0/+9 |
|\ \
| |/ |
|
| * | Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data | Serhiy Storchaka | 2013-06-17 | 1 | -0/+9 |
|
|
* | | merge from 3.3 | Senthil Kumaran | 2013-01-23 | 1 | -9/+9 |
|\ \
| |/ |
|
| * | merge from 3.2 | Senthil Kumaran | 2013-01-23 | 1 | -9/+9 |
| |\ |
|
| | * | Issue #12411: Fix to cgi.parse_multipart to correctly use bytes boundaries and | Senthil Kumaran | 2013-01-23 | 1 | -9/+9 |
|
|
* | | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -1/+1 |
|
|
* | | | Use OESeeror instead of os.error (#16720) | Andrew Svetlov | 2012-12-24 | 1 | -1/+1 |
|
|
* | | | Issue #16706: get rid of os.error | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|/ / |
|
* | | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn... | Florent Xicluna | 2011-12-10 | 1 | -1/+1 |
|
|
* | | default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and | Senthil Kumaran | 2011-10-19 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and | Senthil Kumaran | 2011-10-19 | 1 | -1/+1 |
|
|
* | | Add cgi.closelog() function to close the log file | Victor Stinner | 2011-07-14 | 1 | -1/+10 |
|/ |
|
* | cgi: use isinstance(x, list) instead of type(x) == type([]) | Victor Stinner | 2011-01-14 | 1 | -3/+3 |
|
|
* | Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not | Victor Stinner | 2011-01-14 | 1 | -63/+169 |
|
|
* | #2830: add html.escape() helper and move cgi.escape() uses in the standard li... | Georg Brandl | 2010-10-15 | 1 | -12/+13 |
|
|
* | Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded vari... | Senthil Kumaran | 2010-08-09 | 1 | -2/+2 |
|
|
* | Merged revisions 78844 via svnmerge from | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
|
|
* | Merged revisions 78841-78842 via svnmerge from | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
|
|
* | #4351: more appropriate DeprecationWarning stacklevels | Philip Jenvey | 2009-05-08 | 1 | -2/+2 |
|
|
* | Merged revisions 67528 via svnmerge from | Fred Drake | 2008-12-04 | 1 | -3/+15 |
|
|
* | Added a warning filter to don't show the warning during | Facundo Batista | 2008-09-09 | 1 | -1/+1 |
|
|
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -68/+17 |
|
|
* | Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,... | Benjamin Peterson | 2008-07-02 | 1 | -0/+11 |
|
|
* | Make a new urllib package . | Jeremy Hylton | 2008-06-18 | 1 | -3/+3 |
|
|
* | remove a mimetools import | Benjamin Peterson | 2008-06-12 | 1 | -1/+0 |
|
|
* | Patch for issue 2848, mostly by Humberto Diogenes, with a couple of | Barry Warsaw | 2008-06-12 | 1 | -2/+4 |
|
|
* | Patch by Humberto Diogenes for issue 2849, removing rfc822 module from | Barry Warsaw | 2008-06-12 | 1 | -11/+14 |
|
|
* | Remove old backwards-compatibility classes from the cgi module. | Georg Brandl | 2008-05-11 | 1 | -123/+1 |
|
|
* | Remove one use of UserDict.UserDict | Raymond Hettinger | 2008-02-04 | 1 | -2/+11 |
|
|