| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 67528 via svnmerge from | Fred Drake | 2008-12-04 | 1 | -3/+15 |
|
|
* | Issue 3801. Fixing a dumb error in the deprecated parse_qsl() | Facundo Batista | 2008-09-08 | 1 | -1/+1 |
|
|
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -67/+18 |
|
|
* | Move test.test_support.catch_warning() to the warnings module, rename it | Brett Cannon | 2008-09-02 | 1 | -6/+7 |
|
|
* | Silence DeprecationWarning raised by mimetools and rfc822 in cgi. | Brett Cannon | 2008-08-16 | 1 | -2/+9 |
|
|
* | Now a from submitted via POST that also has a query string | Facundo Batista | 2008-06-21 | 1 | -0/+11 |
|
|
* | Patch #1541463: optimize performance of cgi.FieldStorage operations. | Georg Brandl | 2007-09-20 | 1 | -10/+6 |
|
|
* | Bug #1457823: cgi.(Sv)FormContentDict's constructor now takes | Georg Brandl | 2006-09-30 | 1 | -2/+4 |
|
|
* | Chris McDonough's patch to defend against certain DoS attacks on FieldStorage. | Guido van Rossum | 2006-08-10 | 1 | -5/+15 |
|
|
* | Reverted revision 1.83, which introduced a bug and subtle incompatibility | Armin Rigo | 2005-09-19 | 1 | -8/+6 |
|
|
* | Bring cgi.escape docstring slightly more in line with the library ref | Skip Montanaro | 2005-08-02 | 1 | -1/+3 |
|
|
* | Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetools | Johannes Gijsbers | 2005-01-08 | 1 | -7/+9 |
|
|
* | Remove some lambdas. | Raymond Hettinger | 2004-12-31 | 1 | -3/+4 |
|
|
* | Use cStringIO where available. | Raymond Hettinger | 2004-12-31 | 1 | -1/+4 |
|
|
* | Let cgi.parse_header() properly unquote headers (patch #1008597). | Johannes Gijsbers | 2004-08-14 | 1 | -0/+1 |
|
|
* | Don't return spurious empty fields if 'keep_empty_values' is True. | Neil Schemenauer | 2004-07-19 | 1 | -0/+2 |
|
|
* | Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") | Brett Cannon | 2004-03-21 | 1 | -1/+5 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -10/+9 |
|
|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -1/+1 |
|
|
* | Patch suggested by Hamish Lawson: add an __iter__() that returns | Guido van Rossum | 2002-09-11 | 1 | -0/+3 |
|
|
* | Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) | Raymond Hettinger | 2002-06-30 | 1 | -2/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -25/+33 |
|
|
* | Use is None rather than general boolean | Raymond Hettinger | 2002-05-31 | 1 | -1/+1 |
|
|
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -2/+2 |
|
|
* | tighten up except - only ValueError can be raised in this situation | Skip Montanaro | 2002-03-23 | 1 | -1/+1 |
|
|
* | SF #515006, remove unnecessary import | Neal Norwitz | 2002-02-11 | 1 | -1/+0 |
|
|
* | "ib" should be "boundary"; reported by Neal Norwitz. | Fred Drake | 2001-10-13 | 1 | -1/+1 |
|
|
* | Class FieldStorage: add two new methods, getfirst() and getlist(), | Guido van Rossum | 2001-09-05 | 1 | -0/+22 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-08-09 | 1 | -3/+3 |
|
|
* | Fix a denial-of-service attack, SF bug #443120. | Guido van Rossum | 2001-07-25 | 1 | -4/+14 |
|
|
* | Solve SF bug #231249: cgi.py opens too many (temporary) files. | Guido van Rossum | 2001-06-29 | 1 | -4/+12 |
|
|
* | Add a whole lot of stuff to __all__. | Guido van Rossum | 2001-03-19 | 1 | -3/+6 |
|
|
* | added missing element to __all__ | Skip Montanaro | 2001-02-28 | 1 | -1/+2 |
|
|
* | Added a comment explaining why this file must really have #! | Guido van Rossum | 2001-02-13 | 1 | -0/+9 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -27/+26 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -27/+27 |
|
|
* | Make Traceback header conform to new traceback ("innermost last" -> | Guido van Rossum | 2000-12-27 | 1 | -1/+1 |
|
|
* | This fixes several bug reports concering memory bloating during large | Barry Warsaw | 2000-11-06 | 1 | -5/+1 |
|
|
* | Undo Ping's change. | Guido van Rossum | 2000-10-03 | 1 | -1/+1 |
|
|
* | Change first line to #!/usr/bin/env python (really just to test check-in). | Ka-Ping Yee | 2000-10-03 | 1 | -1/+1 |
|
|
* | Patch #101121, by Ka-Ping Yee: cosmetic cleanup of cgi.py, using my | Guido van Rossum | 2000-09-19 | 1 | -37/+37 |
|
|
* | Improve the test output a bit. | Guido van Rossum | 2000-09-16 | 1 | -2/+4 |
|
|
* | fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI | Jeremy Hylton | 2000-09-15 | 1 | -16/+15 |
|
|
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 1 | -23/+23 |
|
|
* | Remove very long doc string (it's all in the docs) | Jeremy Hylton | 2000-08-03 | 1 | -399/+3 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -6/+6 |
|
|
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 1 | -15/+14 |
|
|
* | Fix a broken r.append(name, value) call, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -1/+1 |
|
|
* | After more discussion with Jim, change the behavior so that only a | Guido van Rossum | 1999-06-11 | 1 | -9/+1 |
|
|