1. b75a0e9 Issue #17849: Raise sensible exception for invalid HTTP tunnel response by Martin Panter · 9 years ago
  2. 9d1de8a Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port by Serhiy Storchaka · 9 years ago
  3. 80573bb Issue #15267: HTTPConnection.request() now is compatibile with old-style by Serhiy Storchaka · 9 years ago
  4. 1aa2c0f Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  5. b4b000f #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. by R David Murray · 10 years ago
  6. 59bdf63 Issue #22928: Disabled HTTP header injections in httplib. by Serhiy Storchaka · 10 years ago
  7. bfd976f simply ignore headers with no name (#19996) by Benjamin Peterson · 10 years ago
  8. 812b975 Fix Issue23300 : httplib.HTTP classe's connect method should use _get_hostport by Senthil Kumaran · 10 years ago
  9. 204a0ec merge 2.7.9 release branch by Benjamin Peterson · 10 years ago
  10. 227f6e0 remove HTTPSConnection's check_hostname parameter (#22959) by Benjamin Peterson · 10 years ago
  11. d862db0 Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails. by Serhiy Storchaka · 10 years ago
  12. e3e7d40 pep 476: verify certificates by default (#22417) by Benjamin Peterson · 10 years ago
  13. b206473 give urllib.urlopen a context parameter (closes #22927) by Benjamin Peterson · 10 years ago
  14. 31aa69e allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI (closes #22921) by Benjamin Peterson · 10 years ago
  15. fcfb18e allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnection by Benjamin Peterson · 10 years ago
  16. b7414e0 Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more by Berker Peksag · 10 years ago
  17. 36f28f7 Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when using http.client.HTTPConnection.set_tunnel(). by Senthil Kumaran · 10 years ago
  18. c97f5ed Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. by Serhiy Storchaka · 11 years ago
  19. d66c0ee Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length. by Antoine Pitrou · 12 years ago
  20. 4bb142b Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  21. 4113d2b Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 12 years ago
  22. 671138f Issue #16037: Limit httplib's _read_status() function to work around broken by Christian Heimes · 12 years ago
  23. 618802d Fix Issue14721: Send Content-length: 0 for empty body () in the http.request by Senthil Kumaran · 12 years ago
  24. 0267185 Fix for Issue13684 - httplib tunnel infinite loop by Senthil Kumaran · 12 years ago
  25. 06efea3 Use raw strings for docstrings with backslashes in ASCII diagrams by Éric Araujo · 13 years ago
  26. 7a15390 Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 13 years ago
  27. 41d663f Issue13073 - Address review comments and add versionchanged information in the docs. by Senthil Kumaran · 13 years ago
  28. 93e6a3d Remove the un-exercised in-module test code. by Senthil Kumaran · 13 years ago
  29. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  30. d7b6ac6 Merged revisions 87373,87381 via svnmerge from by Antoine Pitrou · 14 years ago
  31. 501bfd8 Merged revisions 86450 via svnmerge from by Senthil Kumaran · 14 years ago
  32. aa5f49e Merged revisions 85205 via svnmerge from by Senthil Kumaran · 14 years ago
  33. 452b0ce Merged revisions 85169 via svnmerge from by Senthil Kumaran · 14 years ago
  34. d389cb5 Fix Issue1327971: HTTPResponse should expose a proper fileno attribute by Senthil Kumaran · 14 years ago
  35. 2c6aee9 Forward port r70643 (#5542) + part of r83120 (just remove the comment) by Victor Stinner · 14 years ago
  36. dfaced5 Fix issue6312 - close the resp object for HEAD response. by Senthil Kumaran · 14 years ago
  37. ed920434 Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding: chunked" by Senthil Kumaran · 14 years ago
  38. ebc73dc Issue #7427: improve the representation of httplib.BadStatusLine exceptions. by Dirkjan Ochtman · 15 years ago
  39. 9d32521 issue3972: HTTPConnection and HTTPSConnection now support a by Gregory P. Smith · 15 years ago
  40. 7713acf Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth by Senthil Kumaran · 15 years ago
  41. 92331d5 Fix py3k warnings in httplib by Antoine Pitrou · 15 years ago
  42. 7248178 Issue #6790: Make it possible again to pass an `array.array` to by Antoine Pitrou · 15 years ago
  43. 68c6e92 Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings. by Chris Withers · 15 years ago
  44. 77db016 comment typo fix by Gregory P. Smith · 15 years ago
  45. e2ae86a Revert the changes from r74463, they were causing test_xmlrpc to fail. by Gregory P. Smith · 15 years ago
  46. 8cabfa3 Force the http connection to close after any request returned when by Gregory P. Smith · 15 years ago
  47. e266f25 Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. by Senthil Kumaran · 15 years ago
  48. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 16 years ago
  49. 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 16 years ago
  50. 7e876f5 Issue 4336: HTTPRequest._send_output() now deals with the case of the message body not being a string. This allows clients to use endheaders(message_body) instead of endheaders() + send(message_body) without making any extra checks. by Kristján Valur Jónsson · 16 years ago
  51. 0381f48 Send HTTP headers and message body in a single send() call. by Jeremy Hylton · 16 years ago
  52. e3d0bf7 The docs for httplib.HTTPConnection.putheader() have claimed for quite a while by Brett Cannon · 16 years ago
  53. 1eaf074 Move test.test_support.catch_warning() to the warnings module, rename it by Brett Cannon · 16 years ago
  54. 0a4128e Silence the DeprecationWarning raised in httplib when mimetools is imported. by Brett Cannon · 16 years ago
  55. c4691ec - Issue #3094: httplib.HTTPSConnection Host: headers no longer include the by Gregory P. Smith · 16 years ago
  56. 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 16 years ago
  57. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 17 years ago
  58. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 17 years ago
  59. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  60. dad88dc Patch #1966: Break infinite loop in httplib when the servers by Martin v. Löwis · 17 years ago
  61. 26458c1 Fix tpyo. by Georg Brandl · 17 years ago
  62. 7066590 Issue #1580738. When HTTPConnection reads the whole stream with read(), by Facundo Batista · 17 years ago
  63. 98d19da More work on SSL support. by Bill Janssen · 17 years ago
  64. c459264 deprecate use of FakeSocket by Bill Janssen · 17 years ago
  65. a6900e8 Don't lie in __all__ attributes when SSL is not available: only add the SSL by Thomas Wouters · 17 years ago
  66. 426ea0a This contains a number of things: by Bill Janssen · 17 years ago
  67. f25e35b Bug #978833: Close https sockets by releasing the _ssl object. by Martin v. Löwis · 17 years ago
  68. 70f996b Added timeout support to HTTPSConnection, through the by Facundo Batista · 17 years ago
  69. f03facf Some nits. by Georg Brandl · 17 years ago
  70. 07c78be Added a 'create_connect()' function to socket.py, which creates a by Facundo Batista · 18 years ago
  71. 0af3388 Bug #978833: Revert r50844, as it broke _socketobject.dup. Will backport. by Martin v. Löwis · 18 years ago
  72. f733abb Whitespace normalization. by Tim Peters · 18 years ago
  73. 040a927 Patch #1065257: Support passing open files as body in HTTPConnection.request(). by Martin v. Löwis · 18 years ago
  74. ca2e790 Minor typo fixes by Andrew M. Kuchling · 18 years ago
  75. 9298eff Bug #978833: Really close underlying socket in _socketobject.close. by Martin v. Löwis · 18 years ago
  76. a2ac2ef RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if not necessary. by Georg Brandl · 18 years ago
  77. 6aab16e Move "httpresponses" dict from urllib2 to httplib where it belongs. by Georg Brandl · 19 years ago
  78. 80ba8e8 bug [ 1296004 ] MemoryError in httplib by Georg Brandl · 19 years ago
  79. 0aade9a bug [ 1155638 ] self.length shield exception in httplib by Georg Brandl · 19 years ago
  80. def9d2a Fix for SF bug 988120 via patch 1061941. by Jeremy Hylton · 20 years ago
  81. 4d03791 SF bug #1046855: httplib index out of range by Raymond Hettinger · 20 years ago
  82. 39a3178 Patch #1025790: Add status code constants to httplib. by Martin v. Löwis · 20 years ago
  83. 0a1af4a Remove tabs. by Brett Cannon · 20 years ago
  84. 74a249e Strip square brackets from IPv6 address. by Martin v. Löwis · 20 years ago
  85. cae14d2 missed the obvious test case and corresponding fix by Skip Montanaro · 20 years ago
  86. 10e6e0e Search from the end of the host/port combination to find the colon which by Skip Montanaro · 20 years ago
  87. deacce2 Patch #800236: add HTTPResponse.getheaders(). by Martin v. Löwis · 20 years ago
  88. 2c17825 SF bug 874842 and patch 997626: httplib bugs by Jeremy Hylton · 20 years ago
  89. 39aef79 Fix a bug that robotparser starves memory when the server responses by Hye-Shik Chang · 20 years ago
  90. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  91. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  92. af7dc8d Patch #831747: Add skip_accept_encoding parameter to putrequest. by Martin v. Löwis · 21 years ago
  93. 0c5b4ad fixed obvious bug in _send_header as per SF bug #831271 by Alex Martelli · 21 years ago
  94. 11892ec Patch #817854: Add missing operations for SSLFile. Fixes #792101. by Martin v. Löwis · 21 years ago
  95. b676952 Fix sf bug 666219: assertion error in httplib. by Jeremy Hylton · 21 years ago
  96. 616a58d Deal with a couple XXX comments which asked questions. by Greg Stein · 21 years ago
  97. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  98. c2659cf Whitespace normalization. by Tim Peters · 21 years ago
  99. c1b2cb9 SF bug 622042: Don't expect response body from HEAD request. by Jeremy Hylton · 21 years ago
  100. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 21 years ago