1. 34eeed4 Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBase by Martin Panter · 8 years ago
  2. ff5cd45 Issue #24291: Merge wsgi partial write fix from 3.5 by Martin Panter · 8 years ago
  3. ed0425c Issue #24291: Avoid WSGIRequestHandler doing partial writes by Martin Panter · 8 years ago
  4. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  5. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  6. d77133b Issue #26717: Merge wsgiref fix from 3.5 by Martin Panter · 8 years ago
  7. 50dd1f7 Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8 by Martin Panter · 8 years ago
  8. 0cab9c1 Issue #26404: Add context manager to socketserver, by Aviv Palivoda by Martin Panter · 8 years ago
  9. 1cd4ff6 Issue #26560: Avoid potential ValueError in BaseHandler.start_response by Berker Peksag · 8 years ago
  10. f66f420 Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella. by Robert Collins · 9 years ago
  11. ddc7440 Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella. by Robert Collins · 9 years ago
  12. dc41440 Merge from 3.4 by Senthil Kumaran · 10 years ago
  13. 86c9e18 Merge from 3.3 by Senthil Kumaran · 10 years ago
  14. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  15. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  16. 3e88722 Issue #5800: headers parameter of wsgiref.headers.Headers is now optional. by Berker Peksag · 10 years ago
  17. a09daef Update docstring to mention correct PEP number. by Eli Bendersky · 10 years ago
  18. 0abbe8c Issue #20138: The wsgiref.application_uri() and wsgiref.request_uri() by Serhiy Storchaka · 10 years ago
  19. d98d6cb Closes #19258: close WSGI server after handling request in demo code. by Georg Brandl · 11 years ago
  20. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 11 years ago
  21. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 11 years ago
  22. 5508412 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  23. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  24. a5e0eaf Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it specifies an implementation specific term. by Senthil Kumaran · 12 years ago
  25. b715fac Issue #3839: wsgiref should not override a Content-Length header set by by Antoine Pitrou · 13 years ago
  26. 299fa4c Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. by Senthil Kumaran · 13 years ago
  27. b6d4a8e Implement http://bugs.python.org/issue10155 using And Clover's patch, w/added by Phillip J. Eby · 14 years ago
  28. a01799f Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. by Phillip J. Eby · 14 years ago
  29. e159422 Update wsgiref for PEP 3333, and fix errors introduced into the test suite by converting type() checks to isinstance(). by Phillip J. Eby · 14 years ago
  30. b193826 Manually copy patch for bug 7250 from the release26-maint branch. I suck by Barry Warsaw · 14 years ago
  31. 8e615ae Merged revisions 78367 via svnmerge from by Tarek Ziadé · 14 years ago
  32. a3211ee Merged revisions 78211 via svnmerge from by Ezio Melotti · 14 years ago
  33. fe99105 Use true booleans and PEP8 for argdefaults. by Georg Brandl · 15 years ago
  34. 1c25de6 Merged revisions 73952 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  35. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  36. a9ecbda Fix BytesWarning with -bb in wsgiref.headers.Headers. by Antoine Pitrou · 15 years ago
  37. 38a66ad Issue #4718: Adapt the wsgiref package so that it actually works with Python 3.x, by Antoine Pitrou · 15 years ago
  38. 1afc169 Make a new urllib package . by Jeremy Hylton · 16 years ago
  39. 820c120 Patch for issue 2848, mostly by Humberto Diogenes, with a couple of by Barry Warsaw · 16 years ago
  40. 2442015 Create http package. #2883. by Georg Brandl · 16 years ago
  41. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  42. 6a10e02 Switch wsgiref to io.{StringIO,BytesIO}. This shuts up the test failures. by Guido van Rossum · 17 years ago
  43. ec8e716 Convert some usages of types.StringType to just str (since types.StringType has gone away). by Collin Winter · 17 years ago
  44. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  45. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  46. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  47. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  48. 0b70cca Remove usage of backticks. by Brett Cannon · 18 years ago
  49. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  50. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  51. 06a2dc7 Use explicit relative import, to make things work again. by Guido van Rossum · 18 years ago
  52. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago