summaryrefslogtreecommitdiff
path: root/Lib/httplib.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* give httplib.IncompleteRead a more sane repr #4308Benjamin Peterson2009-03-021-2/+11
* Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-111-16/+28
* Issue 4336: HTTPRequest._send_output() now deals with the case of the messag...Kristján Valur Jónsson2009-01-091-7/+8
* Send HTTP headers and message body in a single send() call.Jeremy Hylton2008-11-291-24/+45
* The docs for httplib.HTTPConnection.putheader() have claimed for quite a whileBrett Cannon2008-11-151-6/+3
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-4/+5
* Silence the DeprecationWarning raised in httplib when mimetools is imported.Brett Cannon2008-08-161-1/+5
* - Issue #3094: httplib.HTTPSConnection Host: headers no longer include theGregory P. Smith2008-07-071-1/+1
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-2/+3
* #1627: httplib now ignores negative Content-Length headers.Georg Brandl2008-02-241-0/+3
* #900744: If an invalid chunked-encoding header is sent by a server,Georg Brandl2008-02-241-1/+7
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Patch #1966: Break infinite loop in httplib when the serversMartin v. Löwis2008-02-121-0/+4
* Fix tpyo.Georg Brandl2007-12-081-1/+1
* Issue #1580738. When HTTPConnection reads the whole stream with read(),Facundo Batista2007-10-181-1/+2
* More work on SSL support.Bill Janssen2007-09-101-2/+2
* deprecate use of FakeSocketBill Janssen2007-08-311-0/+4
* Don't lie in __all__ attributes when SSL is not available: only add the SSLThomas Wouters2007-08-301-1/+2
* This contains a number of things:Bill Janssen2007-08-291-201/+32
* Bug #978833: Close https sockets by releasing the _ssl object.Martin v. Löwis2007-07-271-0/+3
* Added timeout support to HTTPSConnection, through theFacundo Batista2007-05-211-4/+3
* Some nits.Georg Brandl2007-03-261-1/+2
* Added a 'create_connect()' function to socket.py, which creates aFacundo Batista2007-03-231-20/+3
* Bug #978833: Revert r50844, as it broke _socketobject.dup.Martin v. Löwis2007-03-231-2/+2
* Whitespace normalization.Tim Peters2007-01-301-1/+1
* Patch #1065257: Support passing open files as body inMartin v. Löwis2006-11-121-2/+24
* Minor typo fixesAndrew M. Kuchling2006-07-301-2/+2
* Bug #978833: Really close underlying socket in _socketobject.close.Martin v. Löwis2006-07-261-2/+2
* RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if...Georg Brandl2006-05-031-4/+13
* Move "httpresponses" dict from urllib2 to httplib where it belongs.Georg Brandl2006-02-171-1/+50
* bug [ 1296004 ] MemoryError in httplibGeorg Brandl2005-09-291-4/+7
* bug [ 1155638 ] self.length shield exception in httplibGeorg Brandl2005-06-261-0/+1
* Fix for SF bug 988120 via patch 1061941.Jeremy Hylton2004-11-071-2/+4
* SF bug #1046855: httplib index out of rangeRaymond Hettinger2004-10-141-1/+1
* Patch #1025790: Add status code constants to httplib.Martin v. Löwis2004-09-181-3/+62
* Remove tabs.Brett Cannon2004-09-151-2/+2
* Strip square brackets from IPv6 address.Martin v. Löwis2004-09-141-0/+2
* missed the obvious test case and corresponding fixSkip Montanaro2004-09-141-1/+2
* Search from the end of the host/port combination to find the colon whichSkip Montanaro2004-09-141-1/+1
* Patch #800236: add HTTPResponse.getheaders().Martin v. Löwis2004-08-181-0/+6
* SF bug 874842 and patch 997626: httplib bugsJeremy Hylton2004-08-071-10/+20