index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
httplib.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #15633: httplib.HTTPResponse is now mark closed when the server sends l...
Antoine Pitrou
2013-02-02
1
-4/+9
*
Issue #16714: use 'raise' exceptions, don't 'throw'.
Andrew Svetlov
2012-12-18
1
-1/+1
*
Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...
Antoine Pitrou
2012-12-15
1
-0/+4
*
Issue #16037: Limit httplib's _read_status() function to work around broken
Christian Heimes
2012-09-25
1
-1/+3
*
Fix Issue14721: Send Content-length: 0 for empty body () in the http.request
Senthil Kumaran
2012-05-19
1
-1/+1
*
Fix for Issue13684 - httplib tunnel infinite loop
Senthil Kumaran
2012-04-23
1
-1/+5
*
Use raw strings for docstrings with backslashes in ASCII diagrams
Éric Araujo
2012-02-26
1
-1/+1
*
Fixes #10860: Handle empty port after port delimiter in httplib
Łukasz Langa
2011-10-18
1
-1/+4
*
Issue13073 - Address review comments and add versionchanged information in th...
Senthil Kumaran
2011-10-05
1
-3/+3
*
Remove the un-exercised in-module test code.
Senthil Kumaran
2011-08-10
1
-68/+0
*
#11515: fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-15
1
-1/+1
*
Merged revisions 87373,87381 via svnmerge from
Antoine Pitrou
2010-12-18
1
-5/+24
*
Merged revisions 86450 via svnmerge from
Senthil Kumaran
2010-11-14
1
-0/+3
*
Merged revisions 85205 via svnmerge from
Senthil Kumaran
2010-10-03
1
-1/+1
*
Merged revisions 85169 via svnmerge from
Senthil Kumaran
2010-10-02
1
-13/+13
*
Fix Issue1327971: HTTPResponse should expose a proper fileno attribute
Senthil Kumaran
2010-09-21
1
-0/+3
*
Forward port r70643 (#5542) + part of r83120 (just remove the comment)
Victor Stinner
2010-07-24
1
-30/+12
*
Fix issue6312 - close the resp object for HEAD response.
Senthil Kumaran
2010-06-04
1
-0/+1
*
Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-en...
Senthil Kumaran
2010-04-28
1
-0/+3
*
Issue #7427: improve the representation of httplib.BadStatusLine exceptions.
Dirkjan Ochtman
2010-02-24
1
-0/+2
*
issue3972: HTTPConnection and HTTPSConnection now support a
Gregory P. Smith
2010-01-03
1
-5/+9
*
Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth
Senthil Kumaran
2009-12-20
1
-3/+15
*
Fix py3k warnings in httplib
Antoine Pitrou
2009-10-14
1
-4/+4
*
Issue #6790: Make it possible again to pass an `array.array` to
Antoine Pitrou
2009-09-29
1
-1/+2
*
Fixes issue #6838: use a list to accumulate the value instead of repeatedly c...
Chris Withers
2009-09-04
1
-12/+9
*
comment typo fix
Gregory P. Smith
2009-08-20
1
-1/+1
*
Revert the changes from r74463, they were causing test_xmlrpc to fail.
Gregory P. Smith
2009-08-19
1
-9/+1
*
Force the http connection to close after any request returned when
Gregory P. Smith
2009-08-15
1
-1/+14
*
Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.
Senthil Kumaran
2009-05-24
1
-0/+29
*
give httplib.IncompleteRead a more sane repr #4308
Benjamin Peterson
2009-03-02
1
-2/+11
*
Issue 4879: Allow buffering for HTTPResponse
Kristján Valur Jónsson
2009-01-11
1
-16/+28
*
Issue 4336: HTTPRequest._send_output() now deals with the case of the messag...
Kristján Valur Jónsson
2009-01-09
1
-7/+8
*
Send HTTP headers and message body in a single send() call.
Jeremy Hylton
2008-11-29
1
-24/+45
*
The docs for httplib.HTTPConnection.putheader() have claimed for quite a while
Brett Cannon
2008-11-15
1
-6/+3
*
Move test.test_support.catch_warning() to the warnings module, rename it
Brett Cannon
2008-09-02
1
-4/+5
*
Silence the DeprecationWarning raised in httplib when mimetools is imported.
Brett Cannon
2008-08-16
1
-1/+5
*
- Issue #3094: httplib.HTTPSConnection Host: headers no longer include the
Gregory P. Smith
2008-07-07
1
-1/+1
*
Fixed the semantic of timeout for socket.create_connection and
Facundo Batista
2008-05-29
1
-2/+3
*
#1627: httplib now ignores negative Content-Length headers.
Georg Brandl
2008-02-24
1
-0/+3
*
#900744: If an invalid chunked-encoding header is sent by a server,
Georg Brandl
2008-02-24
1
-1/+7
*
Patch #2167 from calvin: Remove unused imports
Christian Heimes
2008-02-23
1
-1/+0
*
Patch #1966: Break infinite loop in httplib when the servers
Martin v. Löwis
2008-02-12
1
-0/+4
*
Fix tpyo.
Georg Brandl
2007-12-08
1
-1/+1
*
Issue #1580738. When HTTPConnection reads the whole stream with read(),
Facundo Batista
2007-10-18
1
-1/+2
*
More work on SSL support.
Bill Janssen
2007-09-10
1
-2/+2
*
deprecate use of FakeSocket
Bill Janssen
2007-08-31
1
-0/+4
*
Don't lie in __all__ attributes when SSL is not available: only add the SSL
Thomas Wouters
2007-08-30
1
-1/+2
*
This contains a number of things:
Bill Janssen
2007-08-29
1
-201/+32
*
Bug #978833: Close https sockets by releasing the _ssl object.
Martin v. Löwis
2007-07-27
1
-0/+3
*
Added timeout support to HTTPSConnection, through the
Facundo Batista
2007-05-21
1
-4/+3
[next]