diff options
author | Andrew Kuchling <amk@amk.ca> | 2016-11-08 22:33:31 -0500 |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2016-11-08 22:33:31 -0500 |
commit | 58c534dd6cac474776e173fbeb06efbf46aff028 (patch) | |
tree | c44b4a8e41b92f2419445e7165896f6e0af23995 | |
parent | d58fc8b89e9fe036424643472d843cc15318ca97 (diff) | |
download | cpython-git-58c534dd6cac474776e173fbeb06efbf46aff028.tar.gz |
Use http instead of https, due to certificate error
-rw-r--r-- | Doc/library/http.client.rst | 2 | ||||
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 0a1725e810..e1acf9273e 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -20,7 +20,7 @@ HTTPS protocols. It is normally not used directly --- the module .. seealso:: - The `Requests package <https://docs.python-requests.org/>`_ + The `Requests package <http://docs.python-requests.org/>`_ is recommended for a higher-level HTTP client interface. .. note:: diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 9002afa979..618c69de3a 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -18,7 +18,7 @@ authentication, redirections, cookies and more. .. seealso:: - The `Requests package <https://docs.python-requests.org/>`_ + The `Requests package <http://docs.python-requests.org/>`_ is recommended for a higher-level HTTP client interface. |