summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10...Pierre Quentel2019-09-111-3/+5
* bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973)matthewbelisle-wf2018-10-231-11/+12
* bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)matthewbelisle-wf2018-10-191-9/+25
* bpo-33843: Remove deprecated stuff in cgi module (GH-7662)INADA Naoki2018-06-191-31/+2
* bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in Fi...Amber Brown2018-05-141-4/+6
* bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorag...Pierre Quentel2017-05-081-91/+14
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-1/+1
* Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patchMartin Panter2016-06-061-1/+1
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* (Merge 3.4) cgi.FieldStorage.read_multi ignores Content-LengthVictor Stinner2015-08-181-0/+5
|\
| * cgi.FieldStorage.read_multi ignores Content-LengthVictor Stinner2015-08-181-0/+5
* | merge 3.4 (#23801)Benjamin Peterson2015-03-291-2/+7
|\ \ | |/
| * Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorageDonald Stufft2015-03-291-2/+7
* | Issue #20289: cgi.FieldStorage() now supports the context management protocol.Berker Peksag2015-02-061-0/+6
|/
* remove unused argument (closes #21135)Benjamin Peterson2014-04-031-1/+1
* merge from 3.3Senthil Kumaran2014-01-111-2/+12
|\
| * Issue #19092 - Raise a correct exception when cgi.FieldStorage is given anSenthil Kumaran2014-01-111-2/+12
* | Closes #17335: remove no-op assignment.Georg Brandl2013-10-131-1/+0
* | Issue #18394: Explicitly close the file object cgi.FieldStorageBrett Cannon2013-08-231-0/+6
* | Merge #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-071-1/+1
|\ \ | |/
| * Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-071-1/+1
* | Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-171-0/+9
|\ \ | |/
| * Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-171-0/+9
* | merge from 3.3Senthil Kumaran2013-01-231-9/+9
|\ \ | |/
| * merge from 3.2Senthil Kumaran2013-01-231-9/+9
| |\
| | * Issue #12411: Fix to cgi.parse_multipart to correctly use bytes boundaries andSenthil Kumaran2013-01-231-9/+9
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* | | Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-1/+1
* | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
|/ /
* | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn...Florent Xicluna2011-12-101-1/+1
* | default - Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-201-1/+1
|\ \ | |/
| * 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-201-1/+1
* | Add cgi.closelog() function to close the log fileVictor Stinner2011-07-141-1/+10
|/
* cgi: use isinstance(x, list) instead of type(x) == type([])Victor Stinner2011-01-141-3/+3
* Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, notVictor Stinner2011-01-141-63/+169
* #2830: add html.escape() helper and move cgi.escape() uses in the standard li...Georg Brandl2010-10-151-12/+13
* Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded vari...Senthil Kumaran2010-08-091-2/+2
* Merged revisions 78844 via svnmerge fromBenjamin Peterson2010-03-111-1/+1
* Merged revisions 78841-78842 via svnmerge fromBenjamin Peterson2010-03-111-1/+1
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-2/+2
* Merged revisions 67528 via svnmerge fromFred Drake2008-12-041-3/+15
* Added a warning filter to don't show the warning duringFacundo Batista2008-09-091-1/+1
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-031-68/+17
* Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,...Benjamin Peterson2008-07-021-0/+11
* Make a new urllib package .Jeremy Hylton2008-06-181-3/+3
* remove a mimetools importBenjamin Peterson2008-06-121-1/+0
* Patch for issue 2848, mostly by Humberto Diogenes, with a couple ofBarry Warsaw2008-06-121-2/+4
* Patch by Humberto Diogenes for issue 2849, removing rfc822 module fromBarry Warsaw2008-06-121-11/+14
* Remove old backwards-compatibility classes from the cgi module.Georg Brandl2008-05-111-123/+1
* Remove one use of UserDict.UserDictRaymond Hettinger2008-02-041-2/+11