summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-34866: Add max_num_fields to cgi.FieldStorage (GH-9660) (GH-9969)matthewbelisle-wf2018-10-301-12/+36
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-171-0/+9
* #16765: remove unused import.Ezio Melotti2012-12-251-1/+0
* Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-201-1/+1
* Merged revisions 83901 via svnmerge fromSenthil Kumaran2010-08-091-2/+2
* Fix and check cgi module deprecation warnings. Revert an unwanted rename in ...Florent Xicluna2010-03-171-5/+5
* revert r78842 cgi.py changeBenjamin Peterson2010-03-111-1/+1
* use proper shebang linesBenjamin Peterson2010-03-111-1/+1
* #7092: silence more -3 and -Wd warningsEzio Melotti2010-01-311-1/+1
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-2/+2
* Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters toFred Drake2008-12-041-3/+15
* Issue 3801. Fixing a dumb error in the deprecated parse_qsl()Facundo Batista2008-09-081-1/+1
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-031-67/+18
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-6/+7
* Silence DeprecationWarning raised by mimetools and rfc822 in cgi.Brett Cannon2008-08-161-2/+9
* Now a from submitted via POST that also has a query stringFacundo Batista2008-06-211-0/+11
* Patch #1541463: optimize performance of cgi.FieldStorage operations.Georg Brandl2007-09-201-10/+6
* Bug #1457823: cgi.(Sv)FormContentDict's constructor now takesGeorg Brandl2006-09-301-2/+4
* Chris McDonough's patch to defend against certain DoS attacks on FieldStorage.Guido van Rossum2006-08-101-5/+15
* Reverted revision 1.83, which introduced a bug and subtle incompatibilityArmin Rigo2005-09-191-8/+6
* Bring cgi.escape docstring slightly more in line with the library refSkip Montanaro2005-08-021-1/+3
* Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetoolsJohannes Gijsbers2005-01-081-7/+9
* Remove some lambdas.Raymond Hettinger2004-12-311-3/+4
* Use cStringIO where available.Raymond Hettinger2004-12-311-1/+4
* Let cgi.parse_header() properly unquote headers (patch #1008597).Johannes Gijsbers2004-08-141-0/+1
* Don't return spurious empty fields if 'keep_empty_values' is True.Neil Schemenauer2004-07-191-0/+2
* Change parse_qsl() to accept control-name's with no equal sign (e.g., "name")Brett Cannon2004-03-211-1/+5
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-10/+9
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* Patch suggested by Hamish Lawson: add an __iter__() that returnsGuido van Rossum2002-09-111-0/+3
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-2/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-25/+33
* Use is None rather than general booleanRaymond Hettinger2002-05-311-1/+1
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* tighten up except - only ValueError can be raised in this situationSkip Montanaro2002-03-231-1/+1
* SF #515006, remove unnecessary importNeal Norwitz2002-02-111-1/+0
* "ib" should be "boundary"; reported by Neal Norwitz.Fred Drake2001-10-131-1/+1
* Class FieldStorage: add two new methods, getfirst() and getlist(),Guido van Rossum2001-09-051-0/+22
* Whitespace normalization.Tim Peters2001-08-091-3/+3
* Fix a denial-of-service attack, SF bug #443120.Guido van Rossum2001-07-251-4/+14
* Solve SF bug #231249: cgi.py opens too many (temporary) files.Guido van Rossum2001-06-291-4/+12
* Add a whole lot of stuff to __all__.Guido van Rossum2001-03-191-3/+6
* added missing element to __all__Skip Montanaro2001-02-281-1/+2
* Added a comment explaining why this file must really have #!Guido van Rossum2001-02-131-0/+9
* String method conversion.Eric S. Raymond2001-02-091-27/+26
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Whitespace normalization.Tim Peters2001-01-141-27/+27
* Make Traceback header conform to new traceback ("innermost last" ->Guido van Rossum2000-12-271-1/+1
* This fixes several bug reports concering memory bloating during largeBarry Warsaw2000-11-061-5/+1