index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_cgi.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-47061: deprecate cgi and cgitb (GH-32410)
Brett Cannon
2022-04-09
1
-1/+3
*
bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl (#29...
Christian Sattler
2021-12-12
1
-1/+1
*
bpo-41139: Deprecate `cgi.log()` (GH-25625)
Inada Naoki
2021-04-29
1
-0/+2
*
bpo-42967: only use '&' as a query string separator (#24297)
Adam Goldschmidt
2021-02-14
1
-5/+24
*
bpo-41521: Rename blacklist parameter to not_exported (GH-21824)
Victor Stinner
2020-08-17
1
-3/+4
*
bpo-34226: fix cgi.parse_multipart without content_length (GH-8530)
roger
2020-06-15
1
-0/+14
*
bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10...
Pierre Quentel
2019-09-11
1
-0/+17
*
Remove unused imports in tests (GH-14518)
Victor Stinner
2019-07-01
1
-1/+0
*
bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973)
matthewbelisle-wf
2018-10-23
1
-7/+12
*
bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)
matthewbelisle-wf
2018-10-19
1
-0/+49
*
bpo-33843: Remove deprecated stuff in cgi module (GH-7662)
INADA Naoki
2018-06-19
1
-24/+0
*
bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in Fi...
Amber Brown
2018-05-14
1
-0/+18
*
bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorag...
Pierre Quentel
2017-05-08
1
-2/+2
*
#27364: fix "incorrect" uses of escape character in the stdlib.
R David Murray
2016-09-08
1
-1/+1
*
Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patch
Martin Panter
2016-06-06
1
-0/+6
*
(Merge 3.4) cgi.FieldStorage.read_multi ignores Content-Length
Victor Stinner
2015-08-18
1
-0/+18
|
\
|
*
cgi.FieldStorage.read_multi ignores Content-Length
Victor Stinner
2015-08-18
1
-0/+19
*
|
merge 3.4 (#23801)
Benjamin Peterson
2015-03-29
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
|
\
\
|
|
/
|
*
Use os.devnull instead of hardcoded '/dev/null'.
Serhiy Storchaka
2015-02-15
1
-2/+2
*
|
Issue #20289: cgi.FieldStorage() now supports the context management protocol.
Berker Peksag
2015-02-06
1
-6/+13
|
/
*
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
[next]