aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/cgi.py
Commit message (Expand)AuthorAge
* Merged revisions 83901 via svnmerge fromSenthil Kumaran2010-08-09
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-08
* Merged revisions 67528 via svnmerge fromFred Drake2008-12-04
* Added a warning filter to don't show the warning duringFacundo Batista2008-09-09
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-03
* Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,...Benjamin Peterson2008-07-02
* Make a new urllib package .Jeremy Hylton2008-06-18
* remove a mimetools importBenjamin Peterson2008-06-12
* Patch for issue 2848, mostly by Humberto Diogenes, with a couple ofBarry Warsaw2008-06-12
* Patch by Humberto Diogenes for issue 2849, removing rfc822 module fromBarry Warsaw2008-06-12
* Remove old backwards-compatibility classes from the cgi module.Georg Brandl2008-05-11
* Remove one use of UserDict.UserDictRaymond Hettinger2008-02-04
* Merged revisions 58211-58220 via svnmerge fromThomas Wouters2007-09-20
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* My wish for TempFile is fulfilled.Guido van Rossum2007-08-28
* Make test_cgi pass. I changed the internal file created by make_file()Guido van Rossum2007-08-28
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-03
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-18
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Patch #1550800: make exec a function.Georg Brandl2006-09-06
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-21
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-18
* Reverted revision 1.83, which introduced a bug and subtle incompatibilityArmin Rigo2005-09-19
* Bring cgi.escape docstring slightly more in line with the library refSkip Montanaro2005-08-02
* Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetoolsJohannes Gijsbers2005-01-08
* Remove some lambdas.Raymond Hettinger2004-12-31
* Use cStringIO where available.Raymond Hettinger2004-12-31
* Let cgi.parse_header() properly unquote headers (patch #1008597).Johannes Gijsbers2004-08-14
* Don't return spurious empty fields if 'keep_empty_values' is True.Neil Schemenauer2004-07-19
* Change parse_qsl() to accept control-name's with no equal sign (e.g., "name")Brett Cannon2004-03-21
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
* Get rid of many apply() calls.Guido van Rossum2003-02-27
* Patch suggested by Hamish Lawson: add an __iter__() that returnsGuido van Rossum2002-09-11
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-30
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* Use is None rather than general booleanRaymond Hettinger2002-05-31
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-04
* tighten up except - only ValueError can be raised in this situationSkip Montanaro2002-03-23
* SF #515006, remove unnecessary importNeal Norwitz2002-02-11
* "ib" should be "boundary"; reported by Neal Norwitz.Fred Drake2001-10-13
* Class FieldStorage: add two new methods, getfirst() and getlist(),Guido van Rossum2001-09-05
* Whitespace normalization.Tim Peters2001-08-09
* Fix a denial-of-service attack, SF bug #443120.Guido van Rossum2001-07-25
* Solve SF bug #231249: cgi.py opens too many (temporary) files.Guido van Rossum2001-06-29
* Add a whole lot of stuff to __all__.Guido van Rossum2001-03-19
* added missing element to __all__Skip Montanaro2001-02-28
* Added a comment explaining why this file must really have #!Guido van Rossum2001-02-13
* String method conversion.Eric S. Raymond2001-02-09