summaryrefslogtreecommitdiffstats
path: root/Lib/http/client.py
Commit message (Expand)AuthorAgeFilesLines
* gh-100985: Consistently wrap IPv6 IP address during CONNECT (GH-100986)Derek Higgins2024-02-171-5/+10
* gh-113199: Make read1() and readline() of HTTPResponse close IO after reading...Illia Volochii2023-12-181-0/+4
* gh-73561: Omit interface scope from IPv6 when used as Host header (#93324)Michael2023-11-191-2/+10
* gh-105626: Change the default return value of `HTTPConnection.get_proxy_respo...Nikita Sobolev2023-07-141-3/+2
* gh-104924: Fix `read()able` in `http.client` log messages (gh-104926)Oleg Iarygin2023-05-261-2/+2
* gh-69152: add method get_proxy_response_headers to HTTPConnection class (#104...Alexey Namyotkin2023-05-161-8/+29
* gh-69152: Add _proxy_response_headers attribute to HTTPConnection (#26152)Alexey Namyotkin2023-05-051-11/+7
* GH-103472: close response in HTTPConnection._tunnel (#103473)Thomas Grainger2023-05-021-15/+18
* gh-66897: Upgrade HTTP CONNECT to protocol HTTP/1.1 (#8305)Michael Handler2023-04-051-6/+19
* gh-103112: Add http.client.HTTPResponse.read docstring and fix pydoc output (...Bernhard Wagner2023-03-291-0/+1
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-261-13/+3
* gh-94172: Remove keyfile, certfile and check_hostname parameters (#94173)Victor Stinner2022-11-031-22/+3
* Run Tools/scripts/reindent.py (#94225)Victor Stinner2022-06-261-1/+1
* gh-94172: urllib.request avoids deprecated check_hostname (#94193)Victor Stinner2022-06-241-15/+17
* bpo-28953: Use `raise from` when raising new IncompleteRead (GH-29861)1809092021-12-071-2/+2
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646)rtobar2021-10-061-1/+7
* bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Conti...Gen Xu2021-05-051-17/+21
* bpo-37363: Add audit events to the `http.client` module (GH-21321)Saiyang Gou2021-04-231-0/+4
* Update client.py (GH-24827)Géry Ogam2021-03-131-3/+0
* bpo-43332: Buffer proxy connection setup packets before sending. (GH-24780)Gregory P. Smith2021-03-081-10/+11
* Fix typo in docstring (GH-23515)Fernando Toledo2020-12-211-1/+1
* bpo-40968: Send http/1.1 ALPN extension (#20959)Christian Heimes2020-11-131-0/+3
* bpo-39603: Prevent header injection in http methods (GH-18485)AMIR2020-07-181-0/+15
* bpo-41002: Optimize HTTPResponse.read with a given amount (GH-20943)Bruce Merry2020-06-251-10/+25
* bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)Ashwin Ramaswami2020-03-141-0/+10
* bpo-38216, bpo-36274: Allow subclasses to separately override validation and ...Jason R. Coombs2019-09-281-9/+18
* bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)Christian Heimes2019-07-011-0/+7
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-061-2/+1
* bpo-30458: Use InvalidURL instead of ValueError. (GH-13044)Gregory P. Smith2019-05-011-1/+1
* bpo-30458: Disallow control chars in http URLs. (GH-12755)Gregory P. Smith2019-05-011-0/+14
* bpo-36050: optimize HTTPResponse.read() (GH-12698)Inada Naoki2019-04-061-32/+10
* bpo-36522: Print all values for headers with multiple values. (GH-12681)Matt Houglum2019-04-041-2/+2
* bpo-33365: print the header values beside the keys (GH-6611)Marco Strigl2018-06-191-1/+1
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-8/+2
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* bpo-31945: Configurable blocksize in HTTP(S)Connection (#4279)Nir Soffer2017-11-061-7/+7
* Remove duplicate line in Lib/http/client.py (#1665)remitamine2017-05-191-1/+0
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-2/+2
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #23214: Remove BufferedReader.read1(-1) workaroundMartin Panter2016-10-211-8/+1
* Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-101-0/+6
* Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...Eric V. Smith2016-09-101-1/+1
* [merge from 3.5] - Issue28010 - Make http.client.HTTPConnection.putrequestSenthil Kumaran2016-09-081-1/+2
|\
| * Issue28010 - Make http.client.HTTPConnection.putrequest documentation consist...Senthil Kumaran2016-09-081-1/+2
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-1/+1
* | Issue 27921: Remove backslash from another f-string.Eric V. Smith2016-09-031-1/+1
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* | Issue #12319: Always send file request bodies using chunked encodingMartin Panter2016-08-271-23/+8
* | Issue #12319: Support for chunked encoding of HTTP request bodiesMartin Panter2016-08-241-50/+149