diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2023-05-02 06:34:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 06:34:44 (GMT) |
commit | 68ed2a2a3f1e715dc10724b0c000ec2fc498d11e (patch) | |
tree | 85c87e27dff1f6564b5b7047a111f18be1d7233b /Doc/library/http.client.rst | |
parent | 82ba6ce303d04a7b21034e38d220e23ca9f1dc0a (diff) | |
download | cpython-68ed2a2a3f1e715dc10724b0c000ec2fc498d11e.zip cpython-68ed2a2a3f1e715dc10724b0c000ec2fc498d11e.tar.gz cpython-68ed2a2a3f1e715dc10724b0c000ec2fc498d11e.tar.bz2 |
GH-103484: Fix redirected permanently URLs (#104001)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r-- | Doc/library/http.client.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 38821b3..abdc6b4 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -354,7 +354,7 @@ HTTPConnection Objects the CONNECT request. As HTTP/1.1 is used for HTTP CONNECT tunnelling request, `as per the RFC - <https://tools.ietf.org/html/rfc7231#section-4.3.6>`_, a HTTP ``Host:`` + <https://datatracker.ietf.org/doc/html/rfc7231#section-4.3.6>`_, a HTTP ``Host:`` header must be provided, matching the authority-form of the request target provided as the destination for the CONNECT request. If a HTTP ``Host:`` header is not provided via the headers argument, one is generated and |