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
*
[2.7] closes bpo-38576: Disallow control characters in hostnames in http.clie...
Matěj Cepl
2020-03-19
1
-0/+13
*
[2.7] bpo-38216, bpo-36274: Allow subclasses to separately override validatio...
Jason R. Coombs
2019-10-08
1
-11/+22
*
bpo-30458: Disallow control chars in http URLs (GH-12755) (GH-13154) (GH-13315)
Victor Stinner
2019-05-21
1
-0/+16
*
[2.7] closes bpo-8450: a better error message when http status line isn't rec...
Shoham Peller
2018-09-14
1
-1/+1
*
Issue #24363: Continue parsing HTTP header in spite of invalid lines
Martin Panter
2016-09-16
1
-24/+9
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
Issue #17849: Raise sensible exception for invalid HTTP tunnel response
Martin Panter
2015-09-07
1
-0/+5
*
Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port
Serhiy Storchaka
2015-05-28
1
-4/+3
*
Issue #15267: HTTPConnection.request() now is compatibile with old-style
Serhiy Storchaka
2015-05-16
1
-1/+1
*
Issue #23865: close() methods in multiple modules now are idempotent and more
Serhiy Storchaka
2015-04-10
1
-8/+13
*
#23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.
R David Murray
2015-03-22
1
-13/+23
*
Issue #22928: Disabled HTTP header injections in httplib.
Serhiy Storchaka
2015-03-12
1
-1/+39
*
simply ignore headers with no name (#19996)
Benjamin Peterson
2015-01-26
1
-0/+5
*
Fix Issue23300 : httplib.HTTP classe's connect method should use _get_hostport
Senthil Kumaran
2015-01-24
1
-2/+2
*
merge 2.7.9 release branch
Benjamin Peterson
2014-12-07
1
-15/+1
|
\
|
*
remove HTTPSConnection's check_hostname parameter (#22959)
Benjamin Peterson
2014-12-07
1
-15/+1
*
|
Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
Serhiy Storchaka
2014-12-01
1
-10/+14
|
/
*
pep 476: verify certificates by default (#22417)
Benjamin Peterson
2014-11-24
1
-1/+1
*
give urllib.urlopen a context parameter (closes #22927)
Benjamin Peterson
2014-11-24
1
-2/+3
*
allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI...
Benjamin Peterson
2014-11-24
1
-2/+1
*
allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnec...
Benjamin Peterson
2014-11-23
1
-6/+29
*
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more
Berker Peksag
2014-08-05
1
-0/+6
*
Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when usin...
Senthil Kumaran
2014-05-17
1
-16/+38
*
Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Serhiy Storchaka
2013-12-17
1
-1/+1
*
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
[next]