1. 466e18e Remove unused imports in tests (GH-14518) (GH-14520) by Victor Stinner · 5 years ago
  2. b79b5c0 bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) by matthewbelisle-wf · 6 years ago
  3. 2091448 bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660) by matthewbelisle-wf · 6 years ago
  4. 698865d bpo-33843: Remove deprecated stuff in cgi module (GH-7662) by INADA Naoki · 6 years ago
  5. 545c955 bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in FieldStorage use the given errors (GH-6804) by Amber Brown · 6 years ago
  6. cc3fa20 bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorage (#991) by Pierre Quentel · 7 years ago
  7. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  8. 1cd2772 Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patch by Martin Panter · 8 years ago
  9. 1e26dc7 (Merge 3.4) cgi.FieldStorage.read_multi ignores Content-Length by Victor Stinner · 9 years ago
  10. 6579459 cgi.FieldStorage.read_multi ignores Content-Length by Victor Stinner · 9 years ago
  11. 0deefd5 merge 3.4 (#23801) by Benjamin Peterson · 9 years ago
  12. d90f8d1 Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage by Donald Stufft · 9 years ago
  13. 5fd174a Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 10 years ago
  14. 85c3033 Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 10 years ago
  15. bf5e960 Issue #20289: cgi.FieldStorage() now supports the context management protocol. by Berker Peksag · 10 years ago
  16. 25d8aea Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. by Serhiy Storchaka · 11 years ago
  17. b4cbb92 Issue #19092 - Raise a correct exception when cgi.FieldStorage is given an by Senthil Kumaran · 11 years ago
  18. 331c3fd Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form. by Florent Xicluna · 11 years ago
  19. c7bfe0e Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data by Serhiy Storchaka · 11 years ago
  20. c1a7c56 merge from 3.2 by Senthil Kumaran · 12 years ago
  21. 6b102f2 Issue #12411: Fix to cgi.parse_multipart to correctly use bytes boundaries and by Senthil Kumaran · 12 years ago
  22. 8f79dd5 Silence DeprecationWarning for cgi.escape() usage in test_cgi. by Brett Cannon · 12 years ago
  23. 19b114b merge to 3.3 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers by Senthil Kumaran · 13 years ago
  24. 47b5ddb 3.2 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers by Senthil Kumaran · 13 years ago
  25. 294c231 default - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  26. 1ef0c03 3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and by Senthil Kumaran · 13 years ago
  27. d33344a Add cgi.closelog() function to close the log file by Victor Stinner · 13 years ago
  28. 7ebb706 Restore the global state of the log vars, so that test_cgi can be run twice without failures. by Ezio Melotti · 13 years ago
  29. f0e293c Merged revisions 88700 via svnmerge from by Victor Stinner · 14 years ago
  30. 64c9af1 Merged revisions 88496 via svnmerge from by Brett Cannon · 14 years ago
  31. 5c23b8e Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not by Victor Stinner · 14 years ago
  32. 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 14 years ago
  33. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  34. 807a5a1 close files properly by Benjamin Peterson · 14 years ago
  35. abd91d5 Issue 7832. Document changes to unittest.TestCase.assertSameElements and assertItemsEqual by Michael Foord · 15 years ago
  36. 8fbddf1 Merged revisions 79030-79032 via svnmerge from by Florent Xicluna · 15 years ago
  37. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  38. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  39. 9a0a65b Merged revisions 67528 via svnmerge from by Fred Drake · 16 years ago
  40. a27244b Added a warning filter to don't show the warning during by Facundo Batista · 16 years ago
  41. bd18fd6 Added sanity checks for the deprecated parse_qs() and by Facundo Batista · 16 years ago
  42. c469d4c Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module by Facundo Batista · 16 years ago
  43. 52dbbb9 - Issue #3300: make urllib.parse.[un]quote() default to UTF-8. by Guido van Rossum · 16 years ago
  44. dcf97b9 Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from by Benjamin Peterson · 16 years ago
  45. 596097e Patch by Humberto Diogenes for issue 2849, removing rfc822 module from by Barry Warsaw · 16 years ago
  46. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  47. 49d1b4f Remove old backwards-compatibility classes from the cgi module. by Georg Brandl · 16 years ago
  48. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  49. a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 17 years ago
  50. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  51. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  52. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  53. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  54. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  55. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  56. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  57. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  58. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  59. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  60. d271721 Removed use of 'cgi.initlog()' - the first call to cgi.log is actually by Anthony Baxter · 20 years ago
  61. 66edb62 Don't return spurious empty fields if 'keep_empty_values' is True. by Neil Schemenauer · 20 years ago
  62. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  63. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  64. 846d6db Fix a bizarre typo in the helper class ComparableException: the by Guido van Rossum · 24 years ago
  65. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  66. afde7e2 fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI by Jeremy Hylton · 24 years ago
  67. a1a4b59 Closing patch #101120 -- After everyone agreed. by Moshe Zadka · 24 years ago
  68. d9827c4 test the non-multipart sections of the cgi module by Jeremy Hylton · 24 years ago