1. 68c6e92 Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings. by Chris Withers · 15 years ago
  2. 77db016 comment typo fix by Gregory P. Smith · 15 years ago
  3. e2ae86a Revert the changes from r74463, they were causing test_xmlrpc to fail. by Gregory P. Smith · 15 years ago
  4. 8cabfa3 Force the http connection to close after any request returned when by Gregory P. Smith · 15 years ago
  5. e266f25 Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. by Senthil Kumaran · 15 years ago
  6. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 15 years ago
  7. 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 16 years ago
  8. 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
  9. 0381f48 Send HTTP headers and message body in a single send() call. by Jeremy Hylton · 16 years ago
  10. e3d0bf7 The docs for httplib.HTTPConnection.putheader() have claimed for quite a while by Brett Cannon · 16 years ago
  11. 1eaf074 Move test.test_support.catch_warning() to the warnings module, rename it by Brett Cannon · 16 years ago
  12. 0a4128e Silence the DeprecationWarning raised in httplib when mimetools is imported. by Brett Cannon · 16 years ago
  13. c4691ec - Issue #3094: httplib.HTTPSConnection Host: headers no longer include the by Gregory P. Smith · 16 years ago
  14. 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 16 years ago
  15. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 16 years ago
  16. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 16 years ago
  17. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 16 years ago
  18. dad88dc Patch #1966: Break infinite loop in httplib when the servers by Martin v. Löwis · 16 years ago
  19. 26458c1 Fix tpyo. by Georg Brandl · 17 years ago
  20. 7066590 Issue #1580738. When HTTPConnection reads the whole stream with read(), by Facundo Batista · 17 years ago
  21. 98d19da More work on SSL support. by Bill Janssen · 17 years ago
  22. c459264 deprecate use of FakeSocket by Bill Janssen · 17 years ago
  23. a6900e8 Don't lie in __all__ attributes when SSL is not available: only add the SSL by Thomas Wouters · 17 years ago
  24. 426ea0a This contains a number of things: by Bill Janssen · 17 years ago
  25. f25e35b Bug #978833: Close https sockets by releasing the _ssl object. by Martin v. Löwis · 17 years ago
  26. 70f996b Added timeout support to HTTPSConnection, through the by Facundo Batista · 17 years ago
  27. f03facf Some nits. by Georg Brandl · 17 years ago
  28. 07c78be Added a 'create_connect()' function to socket.py, which creates a by Facundo Batista · 17 years ago
  29. 0af3388 Bug #978833: Revert r50844, as it broke _socketobject.dup. Will backport. by Martin v. Löwis · 17 years ago
  30. f733abb Whitespace normalization. by Tim Peters · 18 years ago
  31. 040a927 Patch #1065257: Support passing open files as body in HTTPConnection.request(). by Martin v. Löwis · 18 years ago
  32. ca2e790 Minor typo fixes by Andrew M. Kuchling · 18 years ago
  33. 9298eff Bug #978833: Really close underlying socket in _socketobject.close. by Martin v. Löwis · 18 years ago
  34. a2ac2ef RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if not necessary. by Georg Brandl · 18 years ago
  35. 6aab16e Move "httpresponses" dict from urllib2 to httplib where it belongs. by Georg Brandl · 18 years ago
  36. 80ba8e8 bug [ 1296004 ] MemoryError in httplib by Georg Brandl · 19 years ago
  37. 0aade9a bug [ 1155638 ] self.length shield exception in httplib by Georg Brandl · 19 years ago
  38. def9d2a Fix for SF bug 988120 via patch 1061941. by Jeremy Hylton · 20 years ago
  39. 4d03791 SF bug #1046855: httplib index out of range by Raymond Hettinger · 20 years ago
  40. 39a3178 Patch #1025790: Add status code constants to httplib. by Martin v. Löwis · 20 years ago
  41. 0a1af4a Remove tabs. by Brett Cannon · 20 years ago
  42. 74a249e Strip square brackets from IPv6 address. by Martin v. Löwis · 20 years ago
  43. cae14d2 missed the obvious test case and corresponding fix by Skip Montanaro · 20 years ago
  44. 10e6e0e Search from the end of the host/port combination to find the colon which by Skip Montanaro · 20 years ago
  45. deacce2 Patch #800236: add HTTPResponse.getheaders(). by Martin v. Löwis · 20 years ago
  46. 2c17825 SF bug 874842 and patch 997626: httplib bugs by Jeremy Hylton · 20 years ago
  47. 39aef79 Fix a bug that robotparser starves memory when the server responses by Hye-Shik Chang · 20 years ago
  48. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  49. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  50. af7dc8d Patch #831747: Add skip_accept_encoding parameter to putrequest. by Martin v. Löwis · 21 years ago
  51. 0c5b4ad fixed obvious bug in _send_header as per SF bug #831271 by Alex Martelli · 21 years ago
  52. 11892ec Patch #817854: Add missing operations for SSLFile. Fixes #792101. by Martin v. Löwis · 21 years ago
  53. b676952 Fix sf bug 666219: assertion error in httplib. by Jeremy Hylton · 21 years ago
  54. 616a58d Deal with a couple XXX comments which asked questions. by Greg Stein · 21 years ago
  55. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  56. c2659cf Whitespace normalization. by Tim Peters · 21 years ago
  57. c1b2cb9 SF bug 622042: Don't expect response body from HEAD request. by Jeremy Hylton · 21 years ago
  58. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 21 years ago
  59. 4922768 Reverted the previous change to read() and readline(). by Raymond Hettinger · 21 years ago
  60. b2e0b92 Module review: by Raymond Hettinger · 21 years ago
  61. 74b9a7a typo by Skip Montanaro · 21 years ago
  62. 77c06fb Whitespace normalization. by Tim Peters · 22 years ago
  63. 7762865 Remove some test code. by Jeremy Hylton · 22 years ago
  64. 22b3a49 Fix SF bug #637789: Handle Proxy-Connection header. by Jeremy Hylton · 22 years ago
  65. 230a60c Whitespace normalization. by Tim Peters · 22 years ago
  66. d4c472c Move code for reading chunked responses in helper function, by Jeremy Hylton · 22 years ago
  67. d229b3a SF bug [ 600488 ] Robustness tweak to httplib.py by Jeremy Hylton · 22 years ago
  68. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  69. 186bec2 typo by Skip Montanaro · 22 years ago
  70. e3252ec Fix typos and such caught by the pycheckerbot. by Jeremy Hylton · 22 years ago
  71. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  72. 8531b1b Send HTTP requests with a single send() call instead of many. by Jeremy Hylton · 22 years ago
  73. 39c0380 Change _begin() back to begin(). by Jeremy Hylton · 22 years ago
  74. 29d27ac Fix for SF bug 579107. by Jeremy Hylton · 22 years ago
  75. 6d0a4c7 Fix for SF bug #432621: httplib: multiple Set-Cookie headers by Jeremy Hylton · 22 years ago
  76. 12f4f35 Fix SF bug #575360 by Jeremy Hylton · 22 years ago
  77. d46aa37 Handle HTTP/0.9 responses. by Jeremy Hylton · 22 years ago
  78. fbd7994 Convert raise to call exception class. Add whitespace. by Jeremy Hylton · 22 years ago
  79. 7c75c99 Simplify HTTPSConnection constructor. by Jeremy Hylton · 22 years ago
  80. be4fcf1 Fixes for two separate HTTP/1.1 bugs: 100 responses and HTTPS connections. by Jeremy Hylton · 22 years ago
  81. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  82. 6af3e2d Forward port of patch # 500311: Work around for buggy https servers. by Martin v. Löwis · 22 years ago
  83. f3f87f7 oops - export InvalidURL in __all__ by Skip Montanaro · 22 years ago
  84. 9d38997 add InvalidURL exception - raised if port is given but empty or non-numeric by Skip Montanaro · 22 years ago
  85. a3c0b93 [Bug #531616] Make HTTPS work again by adding a sendall method to the by Andrew M. Kuchling · 22 years ago
  86. 3921ff6 Fix SF bug 525520. by Jeremy Hylton · 22 years ago
  87. 8acf1e0 SF bug report #405939: wrong Host header with proxy by Jeremy Hylton · 22 years ago
  88. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 22 years ago
  89. 22c5d77 SF #515011, cleanup: remove "or 0" condition by Neal Norwitz · 22 years ago
  90. f3623f3 Somebody checked in a version of httplib that doesn't even compile -- by Tim Peters · 23 years ago
  91. 6459c8d Fix for SF buf #458835 by Jeremy Hylton · 23 years ago
  92. 322c0d1 Only close sockets if they have been created. Reported by Blake Winton. by Martin v. Löwis · 23 years ago
  93. 81937a4 Resolve patch #449367. by Greg Stein · 23 years ago
  94. 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 23 years ago
  95. 4eb5940 Untabify IPv6 changes. by Martin v. Löwis · 23 years ago
  96. a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 23 years ago
  97. 951a884 more public symbols for __all__ by Skip Montanaro · 23 years ago
  98. 23d4047 SF patch #405845 by Martin von Löwis by Jeremy Hylton · 23 years ago
  99. 42dd01a An ssl-wrapped socket now returns '' on EOF, just like a regular by Jeremy Hylton · 24 years ago
  100. 2dd4276 added a few more __all__ lists fixed typo in ihooks docstring by Skip Montanaro · 24 years ago