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