summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
Commit message (Expand)AuthorAgeFilesLines
* 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/+10
|\
| * Add cgi.closelog() function to close the log fileVictor Stinner2011-07-141-1/+10
* | 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-201-1/+1
|/
* 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
* Merged revisions 58211-58220 via svnmerge fromThomas Wouters2007-09-201-7/+5
* Raise statement normalization in Lib/.Collin Winter2007-08-301-12/+12
* My wish for TempFile is fulfilled.Guido van Rossum2007-08-281-1/+1
* Make test_cgi pass. I changed the internal file created by make_file()Guido van Rossum2007-08-281-11/+9
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-2/+2
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-181-4/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-35/+35
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+4
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-5/+15
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-8/+0
* 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