1. a394f2d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 15 years ago
  2. 9a0a65b Merged revisions 67528 via svnmerge from by Fred Drake · 16 years ago
  3. a27244b Added a warning filter to don't show the warning during by Facundo Batista · 16 years ago
  4. c469d4c Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module by Facundo Batista · 16 years ago
  5. 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
  6. 1afc169 Make a new urllib package . by Jeremy Hylton · 16 years ago
  7. ab82a97 remove a mimetools import by Benjamin Peterson · 16 years ago
  8. 820c120 Patch for issue 2848, mostly by Humberto Diogenes, with a couple of by Barry Warsaw · 16 years ago
  9. 596097e Patch by Humberto Diogenes for issue 2849, removing rfc822 module from by Barry Warsaw · 16 years ago
  10. 49d1b4f Remove old backwards-compatibility classes from the cgi module. by Georg Brandl · 16 years ago
  11. 2add352 Remove one use of UserDict.UserDict by Raymond Hettinger · 16 years ago
  12. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  13. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  14. 92bab81 My wish for TempFile is fulfilled. by Guido van Rossum · 17 years ago
  15. a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 17 years ago
  16. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  17. 68937b4 Change some uses of cStringIO.StringIO to io.StringIO. by Guido van Rossum · 17 years ago
  18. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  19. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  20. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  21. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  22. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  23. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  24. 3a703b6 Reverted revision 1.83, which introduced a bug and subtle incompatibility by Armin Rigo · 19 years ago
  25. 97b2fa2 Bring cgi.escape docstring slightly more in line with the library ref by Skip Montanaro · 19 years ago
  26. c7fc10a Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetools by Johannes Gijsbers · 20 years ago
  27. f871d83 Remove some lambdas. by Raymond Hettinger · 20 years ago
  28. a617271 Use cStringIO where available. by Raymond Hettinger · 20 years ago
  29. 9e15dd6 Let cgi.parse_header() properly unquote headers (patch #1008597). by Johannes Gijsbers · 20 years ago
  30. 66edb62 Don't return spurious empty fields if 'keep_empty_values' is True. by Neil Schemenauer · 20 years ago
  31. 8d9b60f Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") by Brett Cannon · 20 years ago
  32. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  33. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  34. 4061cbe Patch suggested by Hamish Lawson: add an __iter__() that returns by Guido van Rossum · 22 years ago
  35. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 22 years ago
  36. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  37. a144900 Use is None rather than general boolean by Raymond Hettinger · 22 years ago
  38. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  39. db5d144 tighten up except - only ValueError can be raised in this situation by Skip Montanaro · 22 years ago
  40. 7fd41cc SF #515006, remove unnecessary import by Neal Norwitz · 22 years ago
  41. 4c85da4 "ib" should be "boundary"; reported by Neal Norwitz. by Fred Drake · 23 years ago
  42. 1bfb388 Class FieldStorage: add two new methods, getfirst() and getlist(), by Guido van Rossum · 23 years ago
  43. ab9ba27 Whitespace normalization. by Tim Peters · 23 years ago
  44. 2e441f7 Fix a denial-of-service attack, SF bug #443120. by Guido van Rossum · 23 years ago
  45. 52b8c29 Solve SF bug #231249: cgi.py opens too many (temporary) files. by Guido van Rossum · 23 years ago
  46. a8423a9 Add a whole lot of stuff to __all__. by Guido van Rossum · 23 years ago
  47. ff443a5 added missing element to __all__ by Skip Montanaro · 23 years ago
  48. 467d723 Added a comment explaining why this file must really have #! by Guido van Rossum · 23 years ago
  49. 7e9b4f5 String method conversion. by Eric S. Raymond · 23 years ago
  50. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  51. 88869f9 Whitespace normalization. by Tim Peters · 24 years ago
  52. 7dd0696 Make Traceback header conform to new traceback ("innermost last" -> by Guido van Rossum · 24 years ago
  53. 7fed217 This fixes several bug reports concering memory bloating during large by Barry Warsaw · 24 years ago
  54. 5191463 Undo Ping's change. by Guido van Rossum · 24 years ago
  55. 099e534 Change first line to #!/usr/bin/env python (really just to test check-in). by Ka-Ping Yee · 24 years ago
  56. a3c6a8a Patch #101121, by Ka-Ping Yee: cosmetic cleanup of cgi.py, using my by Guido van Rossum · 24 years ago
  57. 57d51f2 Improve the test output a bit. by Guido van Rossum · 24 years ago
  58. afde7e2 fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI by Jeremy Hylton · 24 years ago
  59. a1a4b59 Closing patch #101120 -- After everyone agreed. by Moshe Zadka · 24 years ago
  60. c253d9a Remove very long doc string (it's all in the docs) by Jeremy Hylton · 24 years ago
  61. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  62. 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 24 years ago
  63. 3af7b05 Fix a broken r.append(name, value) call, spotted by Tim. by Guido van Rossum · 24 years ago
  64. 60a3bd8 After more discussion with Jim, change the behavior so that only a by Guido van Rossum · 25 years ago
  65. 1946f0d Patch by Jim Fulton: new function parse_qsl(), which is like by Guido van Rossum · 25 years ago
  66. ce900de At Jim Fulton's request (actually, as a compromise :-), default the by Guido van Rossum · 25 years ago
  67. 302331a FieldStorage.__init__(): if there is no content-type header, use by Barry Warsaw · 26 years ago
  68. 030d2ec In read_multi, allow a subclass to override the class we instantiate by Guido van Rossum · 26 years ago
  69. f574500 Patch by Jim Fulton, who writes: by Guido van Rossum · 26 years ago
  70. 0185283 Treat "HEAD" same as "GET", so that CGI scripts won't fail. by Guido van Rossum · 26 years ago
  71. cff311a Be more careful than the previous patch. The default content-type by Guido van Rossum · 26 years ago
  72. dd47ec9 Default content-type to application/x-www-form-urlencoded at the top by Guido van Rossum · 26 years ago
  73. b1b4f94 Make Tim O'Malley's requested change: in FieldStorage.__init__(), when by Guido van Rossum · 26 years ago
  74. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  75. 00f9fea Use string.replace instead of regsub.[g]sub. by Guido van Rossum · 27 years ago
  76. f15d159 Use sys.exc_info() where needed. by Guido van Rossum · 27 years ago
  77. a5e9fb6 Changes suggested by Jim fulton: by Guido van Rossum · 27 years ago
  78. 64c6620 Add optional 'quote' flag argument to escape(); if true, translate '"' by Guido van Rossum · 27 years ago
  79. d7c9d96 Tweak default source of query a bit so it is possible to invoke by Guido van Rossum · 27 years ago
  80. 4305542 Reworded the doc string to remove the need for The Emacs font-lock kludge. by Guido van Rossum · 27 years ago
  81. ad16471 Untested changes by Skip Montanaro to have an optional limit on the by Guido van Rossum · 27 years ago
  82. 5f32248 From: Clarence Gardner <clarence@king.silcom.com> by Guido van Rossum · 27 years ago
  83. 152f9d9 Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is by Guido van Rossum · 27 years ago
  84. 88b85d4 Add __len__ method by Guido van Rossum · 28 years ago
  85. f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
  86. e08c04c Added 'strict_parsing' option to all parsing functions. This causes a by Guido van Rossum · 28 years ago
  87. 16d5b11 Fix truncated paragraph in doc string. Bump version to 2.0. by Guido van Rossum · 28 years ago
  88. c204c70 Added logging support. by Guido van Rossum · 28 years ago
  89. e5e46e0 Fixed embarrassing logic bug in read_lines_to_outerboundary(). by Guido van Rossum · 28 years ago
  90. 9e3f429 Emacs font-lock de-bogo-kludgificocity by Guido van Rossum · 28 years ago
  91. f85de8a Added print_exception() convenience function. by Guido van Rossum · 28 years ago
  92. afb5e93 For method=POST, append a query string from the environment or from by Guido van Rossum · 28 years ago
  93. 99aa2a4 Remove all CRLF -> LF translation for file uploads, since we cannot by Guido van Rossum · 28 years ago
  94. 773ab27 Changes by Jim Fulton: pass environ around as arg; by Guido van Rossum · 28 years ago
  95. fa59cd7 bump version (sorry) by Guido van Rossum · 28 years ago
  96. 503e50b capitalize H3 headers; add 'cgi.' prefix to example code by Guido van Rossum · 28 years ago
  97. a8738a5 Added print_arguments() function. by Guido van Rossum · 28 years ago
  98. 4032c2c Change to use real temporary files instead of StringIO. Correct and by Guido van Rossum · 28 years ago
  99. 0147db0 Considerable documentation changes and a few import rearrangements. by Guido van Rossum · 28 years ago
  100. 7aee384 Reformatted with 4-space indentation. Added some quick docs to the by Guido van Rossum · 28 years ago