summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httplib.py
Commit message (Expand)AuthorAgeFilesLines
* simply ignore headers with no name (#19996)Benjamin Peterson2015-01-261-0/+10
* Fix Issue23300 : httplib.HTTP classe's connect method should use _get_hostportSenthil Kumaran2015-01-241-2/+27
* merge 2.7.9 release branchBenjamin Peterson2014-12-071-8/+5
|\
| * remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-071-8/+5
* | Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.Serhiy Storchaka2014-12-011-1/+24
|/
* don't fail tests when www.python.org can't be validated by the systemBenjamin Peterson2014-11-251-3/+1
* debugging: print ca certs loaded into default ctxBenjamin Peterson2014-11-251-0/+3
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-241-2/+1
* allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnec...Benjamin Peterson2014-11-231-22/+136
* Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBerker Peksag2014-08-051-0/+7
* Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when usin...Senthil Kumaran2014-05-171-2/+46
* Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref t...Serhiy Storchaka2014-02-081-3/+3
* Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+2
* Issue #15633: httplib.HTTPResponse is now mark closed when the server sends l...Antoine Pitrou2013-02-021-3/+15
* Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-151-1/+14
* Fix Issue14721: Send Content-length: 0 for empty body () in the http.requestSenthil Kumaran2012-05-191-0/+28
* httplib test for early eof response. related to Issue13684Senthil Kumaran2012-04-291-0/+8
* Issue #10860: Skip the new test if HTTPS is not availablePetri Lehtinen2011-10-261-0/+1
* Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-181-1/+24
* Merged revisions 87373,87381 via svnmerge fromAntoine Pitrou2010-12-181-0/+29
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-12/+12
* Merged revisions 86450 via svnmerge fromSenthil Kumaran2010-11-141-0/+20
* Merged revisions 85205 via svnmerge fromSenthil Kumaran2010-10-031-2/+8
* Fix Issue1327971: HTTPResponse should expose a proper fileno attributeSenthil Kumaran2010-09-211-0/+7
* Forward port r70643 (#5542) + part of r83120 (just remove the comment)Victor Stinner2010-07-241-0/+31
* test verifying the resp object is closed for HEAD response.Senthil Kumaran2010-06-041-1/+1
* Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-en...Senthil Kumaran2010-04-281-0/+17
* Issue #7427: improve the representation of httplib.BadStatusLine exceptions.Dirkjan Ochtman2010-02-241-0/+4
* issue3972: HTTPConnection and HTTPSConnection now support aGregory P. Smith2010-01-031-2/+35
* Issue #6790: Make it possible again to pass an `array.array` toAntoine Pitrou2009-09-291-1/+16
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
* give httplib.IncompleteRead a more sane repr #4308Benjamin Peterson2009-03-021-0/+19
* Reflow long lines.Jeremy Hylton2008-11-291-5/+10
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-12/+17
* Fix typo with regards to self.PORT shadowing class variables with the same name.Trent Nelson2008-04-091-4/+5
* - Issue #2550: The approach used by client/server code for obtaining portsTrent Nelson2008-04-081-11/+10
* #1627: httplib now ignores negative Content-Length headers.Georg Brandl2008-02-241-0/+7
* #900744: If an invalid chunked-encoding header is sent by a server,Georg Brandl2008-02-241-0/+29
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Issue #1580738. When HTTPConnection reads the whole stream with read(),Facundo Batista2007-10-181-2/+13
* One more fix to consider missing SSL support.Thomas Wouters2007-08-301-2/+3
* Added timeout support to HTTPSConnection, through theFacundo Batista2007-05-211-1/+9
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* Closing the HTTP connection after each test, and listening more.Facundo Batista2007-03-251-1/+4
* Surrounded with try/finally to socket's default timeout settingFacundo Batista2007-03-231-7/+9
* Added a 'create_connect()' function to socket.py, which creates aFacundo Batista2007-03-231-1/+41
* Patch #1065257: Support passing open files as body inMartin v. Löwis2006-11-121-1/+12
* Completely convert test_httplib to unittest.Georg Brandl2006-10-291-90/+63
* Move test case for HTTP response dict to httplib.Georg Brandl2006-02-171-1/+5
* Whitespace normalization.Tim Peters2004-09-161-1/+1