| Commit message (Expand) | Author | Age | Files | Lines |
* | cgi.FieldStorage.read_multi ignores Content-Length | Victor Stinner | 2015-08-18 | 1 | -0/+19 |
|
|
* | Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage | Donald Stufft | 2015-03-29 | 1 | -0/+19 |
|
|
* | Use os.devnull instead of hardcoded '/dev/null'. | Serhiy Storchaka | 2015-02-15 | 1 | -2/+2 |
|
|
* | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref t... | Serhiy Storchaka | 2014-02-08 | 1 | -1/+1 |
|
|
* | Issue #19092 - Raise a correct exception when cgi.FieldStorage is given an | Senthil Kumaran | 2014-01-12 | 1 | -0/+7 |
|
|
* | Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 1 | -0/+46 |
|
|
* | Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data | Serhiy Storchaka | 2013-06-17 | 1 | -0/+23 |
|
|
* | merge from 3.2 | Senthil Kumaran | 2013-01-23 | 1 | -0/+18 |
|\ |
|
| * | Issue #12411: Fix to cgi.parse_multipart to correctly use bytes boundaries and | Senthil Kumaran | 2013-01-23 | 1 | -1/+20 |
|
|
* | | Silence DeprecationWarning for cgi.escape() usage in test_cgi. | Brett Cannon | 2012-04-26 | 1 | -3/+8 |
|
|
* | | merge to 3.3 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers | Senthil Kumaran | 2012-03-13 | 1 | -0/+5 |
|\ \
| |/ |
|
| * | 3.2 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers | Senthil Kumaran | 2012-03-13 | 1 | -0/+5 |
|
|
* | | default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and | Senthil Kumaran | 2011-10-19 | 1 | -0/+4 |
|\ \
| |/ |
|
| * | 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and | Senthil Kumaran | 2011-10-19 | 1 | -0/+4 |
|
|
* | | Add cgi.closelog() function to close the log file | Victor Stinner | 2011-07-14 | 1 | -7/+1 |
|/ |
|
* | Restore the global state of the log vars, so that test_cgi can be run twice w... | Ezio Melotti | 2011-07-14 | 1 | -1/+7 |
|
|
* | Merged revisions 88700 via svnmerge from | Victor Stinner | 2011-03-01 | 1 | -24/+51 |
|
|
* | Merged revisions 88496 via svnmerge from | Brett Cannon | 2011-02-22 | 1 | -0/+1 |
|
|
* | Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not | Victor Stinner | 2011-01-14 | 1 | -16/+17 |
|
|
* | Use assertCountEqual instead of assertItemsEqual | Ezio Melotti | 2010-11-29 | 1 | -1/+1 |
|
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -2/+2 |
|
|
* | close files properly | Benjamin Peterson | 2010-10-30 | 1 | -0/+2 |
|
|
* | Issue 7832. Document changes to unittest.TestCase.assertSameElements and asse... | Michael Foord | 2010-03-20 | 1 | -1/+1 |
|
|
* | Merged revisions 79030-79032 via svnmerge from | Florent Xicluna | 2010-03-17 | 1 | -18/+9 |
|
|
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -1/+1 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -2/+2 |
|
|
* | Merged revisions 67528 via svnmerge from | Fred Drake | 2008-12-04 | 1 | -0/+27 |
|
|
* | Added a warning filter to don't show the warning during | Facundo Batista | 2008-09-09 | 1 | -4/+13 |
|
|
* | Added sanity checks for the deprecated parse_qs() and | Facundo Batista | 2008-09-08 | 1 | -0/+10 |
|
|
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -24/+0 |
|
|
* | - Issue #3300: make urllib.parse.[un]quote() default to UTF-8. | Guido van Rossum | 2008-08-18 | 1 | -0/+2 |
|
|
* | Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,... | Benjamin Peterson | 2008-07-02 | 1 | -0/+87 |
|
|
* | Patch by Humberto Diogenes for issue 2849, removing rfc822 module from | Barry Warsaw | 2008-06-12 | 1 | -1/+1 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -1/+1 |
|
|
* | Remove old backwards-compatibility classes from the cgi module. | Georg Brandl | 2008-05-11 | 1 | -38/+4 |
|
|
* | Raise statement normalization in Lib/test/. | Collin Winter | 2007-08-29 | 1 | -1/+1 |
|
|
* | Make test_cgi pass. I changed the internal file created by make_file() | Guido van Rossum | 2007-08-28 | 1 | -2/+2 |
|
|
* | Changes in anticipation of stricter str vs. bytes enforcement. | Guido van Rossum | 2007-08-27 | 1 | -1/+1 |
|
|
* | SF patch# 1770008 by Christian Heimes (plus some extras). | Guido van Rossum | 2007-08-09 | 1 | -3/+3 |
|
|
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 | 1 | -2/+3 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -3/+1 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -125/+135 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -10/+8 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -0/+69 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -2/+2 |
|
|
* | Removed use of 'cgi.initlog()' - the first call to cgi.log is actually | Anthony Baxter | 2004-08-03 | 1 | -1/+0 |
|
|
* | Don't return spurious empty fields if 'keep_empty_values' is True. | Neil Schemenauer | 2004-07-19 | 1 | -2/+21 |
|
|
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 1 | -1/+1 |
|
|