summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.client.rst
Commit message (Collapse)AuthorAgeFilesLines
* Correct the URL in the http.client example. Noted by Evens Fortuné. Closes ↵Senthil Kumaran2014-04-171-1/+1
| | | | #21229
* Issue #20913: improve the SSL security considerations to first advocate ↵Antoine Pitrou2014-03-221-17/+21
| | | | using create_default_context().
* merge 3.3 (#11448)Benjamin Peterson2014-03-161-4/+18
|\
| * improve set_tunnel docs (closes #11448)Benjamin Peterson2014-03-161-4/+18
| | | | | | | | Patch by Ryan Kelly, karl, and Nikolaus Rath.
* | whatsnew: deprecation of HTTPConnection's strict parameter.R David Murray2014-01-031-6/+6
| |
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-271-1/+1
|\ \ | |/
| * Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more thanGeorg Brandl2013-10-271-1/+1
| | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen.
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix minor bug in httplib example. Found by Alex MacAulay on docs@.Georg Brandl2013-10-061-1/+1
| |
* | #17460 - merge from 3.3Senthil Kumaran2013-03-191-0/+12
|\ \ | |/
| * #17460 - merge from 3.2Senthil Kumaran2013-03-191-3/+3
| |\
| | * #17460 - Adding relevant warning messages regarding strict removal in docsSenthil Kumaran2013-03-191-3/+3
| | |
* | | #17460: Remove the strict argument of HTTPConnection and removing theSenthil Kumaran2013-03-181-15/+3
|/ / | | | | | | DeprecationWarning being issued from 3.2 onwards.
* | #17307 - merge from 3.2Senthil Kumaran2013-03-131-0/+18
|\ \ | |/
| * #17307 - Example of HTTP PUT Request using http.clientSenthil Kumaran2013-03-131-0/+16
| |
* | #15831: merge with 3.2Ezio Melotti2012-09-141-2/+6
|\ \ | |/
| * #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-2/+6
| | | | | | | | Jerdonek.
* | Avoid useless indentation.Georg Brandl2012-05-211-2/+2
| |
* | #14809: Add HTTP status codes from RFC 6585 to http.server and http.clientHynek Schlawack2012-05-161-0/+15
| | | | | | | | Patch by EungJun Yi.
* | merge with 3.2Sandro Tosi2011-12-251-1/+1
|\ \ | |/
| * fix to sent/send typoSandro Tosi2011-12-251-1/+1
| |
* | Issue #13464: Add a readinto() method to http.client.HTTPResponse.Antoine Pitrou2011-12-061-0/+6
|/ | | | Patch by Jon Kuhn.
* Remove duplication.Ezio Melotti2011-10-191-1/+1
|
* Issue #13073 - Address the review comments made by Ezio.Senthil Kumaran2011-10-051-5/+4
|
* Document message_body arg in HTTPConnection.endheadersSenthil Kumaran2011-10-021-2/+6
|
* Fix closes issue12524 - update http.client POST example with a working example.Senthil Kumaran2011-07-201-4/+6
|
* Whitespace nit fixed using reident.Senthil Kumaran2011-06-191-1/+1
|
* Fix closes Issue12315 - Updates to http.client documentation.Senthil Kumaran2011-06-191-1/+12
|
* Typos.Raymond Hettinger2011-01-301-2/+2
|
* More source linksRaymond Hettinger2011-01-271-0/+4
|
* #3243 follow-up: remove debugging print and fix docs; data is a bytes object.v3.2b2Georg Brandl2010-12-191-1/+1
|
* Issue3243 - Support iterable bodies in httplib. Patch contributions by ↵Senthil Kumaran2010-12-191-4/+8
| | | | Xuanji Li and Chris AtLee.
* Issue #10711: Remove HTTP 0.9 support from http.client. The `strict`Antoine Pitrou2010-12-171-7/+16
| | | | parameter to HTTPConnection and friends is deprecated.
* #10705: document what the values of debuglevel are and mean.R. David Murray2010-12-151-2/+4
|
* Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket`Antoine Pitrou2010-10-221-0/+4
| | | | | | in order to support the TLS SNI extension. `HTTPSConnection` and `urlopen()` also use this argument, so that HTTPS virtual hosts are now supported.
* Fix grammarAntoine Pitrou2010-10-131-2/+2
|
* Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler andAntoine Pitrou2010-10-131-9/+21
| | | | | urllib.request.urlopen now take optional arguments to allow for server certificate checking, as recommended in public uses of HTTPS.
* Make comment about SSL support more accurateAntoine Pitrou2010-10-121-2/+2
|
* Issue #9983: warn that urllib and httplib don't perform SSL certificate ↵Antoine Pitrou2010-09-291-6/+6
| | | | validation.
* Document HTTPReponse.fileno() methodSenthil Kumaran2010-09-211-0/+3
|
* Add cross-references to the glossary entry for file objects.Antoine Pitrou2010-09-151-1/+1
|
* Consistency check for versionadded/changed directives.Georg Brandl2010-08-171-0/+2
|
* Rewording the getheader method of HTTPResponse.Senthil Kumaran2010-08-021-3/+4
|
* Fix Issue8572 - httplib getheader() throws error instead of defaultSenthil Kumaran2010-08-021-1/+2
|
* Merged revisions 81087,81106 via svnmerge fromFred Drake2010-05-121-3/+2
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81087 | fred.drake | 2010-05-11 14:12:27 -0400 (Tue, 11 May 2010) | 2 lines fix typo ........ r81106 | fred.drake | 2010-05-11 21:22:03 -0400 (Tue, 11 May 2010) | 2 lines fix error introduced in previous commit, and the adjacent additional typo ........
* Merged revisions 80583 via svnmerge fromSenthil Kumaran2010-04-281-0/+16
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80583 | senthil.kumaran | 2010-04-28 22:50:43 +0530 (Wed, 28 Apr 2010) | 3 lines Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding: chunked" ........
* Merged revisions 78859-78860 via svnmerge fromGeorg Brandl2010-03-121-1/+1
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78859 | georg.brandl | 2010-03-12 10:57:43 +0100 (Fr, 12 Mär 2010) | 1 line Get rid of backticks. ........ r78860 | georg.brandl | 2010-03-12 11:02:03 +0100 (Fr, 12 Mär 2010) | 1 line Fix warnings from "make check". ........
* Merged revisions 77263-77264 via svnmerge fromGregory P. Smith2010-01-031-2/+10
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77263 | gregory.p.smith | 2010-01-02 17:29:44 -0800 (Sat, 02 Jan 2010) | 4 lines Adds an optional source_address parameter to socket.create_connection(). For use by issue3972. ........ r77264 | gregory.p.smith | 2010-01-02 18:06:07 -0800 (Sat, 02 Jan 2010) | 5 lines issue3972: HTTPConnection and HTTPSConnection now support a source_address parameter. Also cleans up an annotation in the socket documentation. ........