summaryrefslogtreecommitdiff
path: root/Lib/httplib.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] closes bpo-8450: a better error message when http status line isn't rec...Shoham Peller2018-09-141-1/+1
* Issue #24363: Continue parsing HTTP header in spite of invalid linesMartin Panter2016-09-161-24/+9
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* Issue #17849: Raise sensible exception for invalid HTTP tunnel responseMartin Panter2015-09-071-0/+5
* Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The portSerhiy Storchaka2015-05-281-4/+3
* Issue #15267: HTTPConnection.request() now is compatibile with old-styleSerhiy Storchaka2015-05-161-1/+1
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-8/+13
* #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-13/+23
* Issue #22928: Disabled HTTP header injections in httplib.Serhiy Storchaka2015-03-121-1/+39
* simply ignore headers with no name (#19996)Benjamin Peterson2015-01-251-0/+5
* Fix Issue23300 : httplib.HTTP classe's connect method should use _get_hostportSenthil Kumaran2015-01-241-2/+2
* merge 2.7.9 release branchBenjamin Peterson2014-12-071-15/+1
|\
| * remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-071-15/+1
* | Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.Serhiy Storchaka2014-12-011-10/+14
|/
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-231-1/+1
* give urllib.urlopen a context parameter (closes #22927)Benjamin Peterson2014-11-231-2/+3
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI...Benjamin Peterson2014-11-231-2/+1
* allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnec...Benjamin Peterson2014-11-231-6/+29
* Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBerker Peksag2014-08-051-0/+6
* Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when usin...Senthil Kumaran2014-05-161-16/+38
* Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-1/+1
* Issue #15633: httplib.HTTPResponse is now mark closed when the server sends l...Antoine Pitrou2013-02-021-4/+9
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-151-0/+4
* Issue #16037: Limit httplib's _read_status() function to work around brokenChristian Heimes2012-09-251-1/+3
* Fix Issue14721: Send Content-length: 0 for empty body () in the http.requestSenthil Kumaran2012-05-191-1/+1
* Fix for Issue13684 - httplib tunnel infinite loopSenthil Kumaran2012-04-231-1/+5
* Use raw strings for docstrings with backslashes in ASCII diagramsÉric Araujo2012-02-261-1/+1
* Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-181-1/+4
* Issue13073 - Address review comments and add versionchanged information in th...Senthil Kumaran2011-10-051-3/+3
* Remove the un-exercised in-module test code.Senthil Kumaran2011-08-101-68/+0
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 87373,87381 via svnmerge fromAntoine Pitrou2010-12-181-5/+24
* Merged revisions 86450 via svnmerge fromSenthil Kumaran2010-11-141-0/+3
* Merged revisions 85205 via svnmerge fromSenthil Kumaran2010-10-031-1/+1
* Merged revisions 85169 via svnmerge fromSenthil Kumaran2010-10-021-13/+13
* Fix Issue1327971: HTTPResponse should expose a proper fileno attributeSenthil Kumaran2010-09-211-0/+3
* Forward port r70643 (#5542) + part of r83120 (just remove the comment)Victor Stinner2010-07-241-30/+12
* Fix issue6312 - close the resp object for HEAD response.Senthil Kumaran2010-06-041-0/+1
* Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-en...Senthil Kumaran2010-04-281-0/+3
* Issue #7427: improve the representation of httplib.BadStatusLine exceptions.Dirkjan Ochtman2010-02-241-0/+2
* issue3972: HTTPConnection and HTTPSConnection now support aGregory P. Smith2010-01-031-5/+9
* Fix for issue 7291 - urllib2 cannot handle https with proxy requiring authSenthil Kumaran2009-12-201-3/+15
* Fix py3k warnings in httplibAntoine Pitrou2009-10-141-4/+4
* Issue #6790: Make it possible again to pass an `array.array` toAntoine Pitrou2009-09-291-1/+2
* Fixes issue #6838: use a list to accumulate the value instead of repeatedly c...Chris Withers2009-09-041-12/+9
* comment typo fixGregory P. Smith2009-08-201-1/+1
* Revert the changes from r74463, they were causing test_xmlrpc to fail.Gregory P. Smith2009-08-191-9/+1
* Force the http connection to close after any request returned whenGregory P. Smith2009-08-151-1/+14
* Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.Senthil Kumaran2009-05-241-0/+29