1. 1cee216 bpo-31639: Change ThreadedHTTPServer to ThreadingHTTPServer class name (GH-7195) by Géry Ogam · 6 years ago
  2. 1d87c7b fixed capitalization of class name (GH-6396) by Alex Gaynor · 6 years ago
  3. 79c3bab FIX documentation and NEWS of ThreadedHTTPServer. (GH-6207) by Julien Palard · 6 years ago
  4. 8bcfa02 bpo-31639: Use threads in http.server module. (GH-5018) by Julien Palard · 6 years ago
  5. a083c8e bpo-30160: Clarify intended usage of wfile (gh-1300) by jugglinmike · 7 years ago
  6. a17a2f5 bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module (#1776) by Stéphane Wirtel · 7 years ago
  7. 351adda bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298) by Pierre Quentel · 7 years ago
  8. 989db5c Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 8 years ago
  9. ecf41da Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 8 years ago
  10. 34eeed4 Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBase by Martin Panter · 8 years ago
  11. 4da945f Merge Issue #22558. by Terry Jan Reedy · 8 years ago
  12. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 8 years ago
  13. 40de69a Issue #25738: Merge HTTP server from 3.5 by Martin Panter · 8 years ago
  14. e42e129 Issue #25738: Don’t send message body for 205 Reset Content by Martin Panter · 8 years ago
  15. 557326e Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation by Berker Peksag · 8 years ago
  16. 0269828 Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation by Berker Peksag · 8 years ago
  17. 0cab9c1 Issue #26404: Add context manager to socketserver, by Aviv Palivoda by Martin Panter · 8 years ago
  18. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  19. b4760ef Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple documentation typos. by Senthil Kumaran · 9 years ago
  20. 70e2847 document the requestline and close_connection attributes, use real booleans, and add tests (closes #23410) by Benjamin Peterson · 9 years ago
  21. cad2bf2 Address issue 18229 - Explain http.server.BaseHTTPRequestHandler's .headers attribute further. by Senthil Kumaran · 10 years ago
  22. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 10 years ago
  23. a475a8d whatsnew: http.server send_error explain parameter. by R David Murray · 11 years ago
  24. 98b28fd Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 11 years ago
  25. bfdcd43 Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 11 years ago
  26. defe7f4 Expose --bind argument for http.server, enable http.server to bind to a user by Senthil Kumaran · 11 years ago
  27. 2acd293 Fix markup/wording. by Ezio Melotti · 11 years ago
  28. 2688644 #1291 http.server's send_error takes an optional explain argument by Senthil Kumaran · 11 years ago
  29. 52d2720 Issue #16088: BaseHTTPRequestHandler's send_error method includes a by Senthil Kumaran · 12 years ago
  30. 61063cc Fix a couple of versionadded/versionchanged related markup errors. by Georg Brandl · 12 years ago
  31. 1251faf Issue 14989: http.server --cgi option can enable the CGI http server. by Senthil Kumaran · 12 years ago
  32. 4ca008b issue6085 - update docs in default branch by Senthil Kumaran · 12 years ago
  33. db727b4 Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler by Senthil Kumaran · 12 years ago
  34. 1aacba4 Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname by Senthil Kumaran · 12 years ago
  35. df7ac06 Merge doc fixes #14553 and #14552. by R David Murray · 12 years ago
  36. e7bade5 #14553: fix word order. by R David Murray · 12 years ago
  37. 62ab10a0 Replace mentions of IOError by Antoine Pitrou · 13 years ago
  38. e9c7d6c Fix markup and working in the doc. by Ezio Melotti · 13 years ago
  39. cc99528 issue12039 - update the documentation of send_response method in http.server.rst. by Senthil Kumaran · 13 years ago
  40. 6ea17a8 Issue #12039 - Update the http.server.rst with the requirement to call `end_headers` after calling `send_header`. by Senthil Kumaran · 13 years ago
  41. c7ae19b Issue #3709: a flush_headers method to BaseHTTPRequestHandler which manages the by Senthil Kumaran · 13 years ago
  42. 469271d More source links by Raymond Hettinger · 14 years ago
  43. e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 14 years ago
  44. 0f476d4 Issue1491 - BaseHTTPServer incorrectly implements response code 100 by Senthil Kumaran · 14 years ago
  45. f68798b Use the right role. by Georg Brandl · 14 years ago
  46. 8971f74 Merged revisions 82433 via svnmerge from by Georg Brandl · 14 years ago
  47. 294f271 Merged revisions 82026 via svnmerge from by Senthil Kumaran · 14 years ago
  48. 97db43b Merged revisions 82018 via svnmerge from by Senthil Kumaran · 14 years ago
  49. 036490d More conversion to new-style optional args. by Georg Brandl · 15 years ago
  50. 3e4f055 Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-66074,66080,66082-66083,66090-66093,66097-66099,66103,66105,66110,66118 via svnmerge from by Benjamin Peterson · 16 years ago
  51. 83e9f4c Remove last traces of mimetools. by Georg Brandl · 16 years ago
  52. 2442015 Create http package. #2883. by Georg Brandl · 16 years ago