Skip to content

Commit db3c45b

Browse files
authored
Merge branch 'master' into patch-1
2 parents 32db4ae + 0a0b45e commit db3c45b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/dev/virtualenvs.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ when you share your project with others. You should get output similar to this
156156
Adding requests to Pipfile's [packages]...
157157
P.S. You have excellent taste! ✨ 🍰 ✨
158158
159-
.. _Requests: http://docs.python-requests.org/en/master/
159+
.. _Requests: https://requests.readthedocs.io/en/latest/
160160

161161

162162
Using installed packages

docs/scenarios/client.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ your URLs, or to form-encode your POST data. Keep-alive and HTTP connection
2828
pooling are 100% automatic, powered by urllib3, which is embedded within
2929
Requests.
3030

31-
- `Documentation <http://docs.python-requests.org/en/latest/index.html>`_
31+
- `Documentation <https://requests.readthedocs.io/en/latest/>`_
3232
- `PyPi <http://pypi.org/project/requests>`_
3333
- `GitHub <https://github.com/kennethreitz/requests>`_
3434

docs/scenarios/scrape.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lxml and Requests
2828
`lxml <http://lxml.de/>`_ is a pretty extensive library written for parsing
2929
XML and HTML documents very quickly, even handling messed up tags in the
3030
process. We will also be using the
31-
`Requests <http://docs.python-requests.org/en/latest/>`_ module instead of the
31+
`Requests <https://requests.readthedocs.io/en/latest/>`_ module instead of the
3232
already built-in urllib2 module due to improvements in speed and readability.
3333
You can easily install both using ``pip install lxml`` and
3434
``pip install requests``.

docs/writing/style.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,7 @@ easy-to-read version of PEP 8 is also available at `pep8.org <http://pep8.org/>`
465465

466466
This is highly recommended reading. The entire Python community does their
467467
best to adhere to the guidelines laid out within this document. Some project
468-
may sway from it from time to time, while others may
469-
`amend its recommendations <http://docs.python-requests.org/en/master/dev/contributing/#kenneth-reitz-s-code-style>`_.
468+
may sway from it from time to time, while others may amend its recommendations.
470469

471470
That being said, conforming your Python code to PEP 8 is generally a good idea
472471
and helps make code more consistent when working on projects with other

0 commit comments

Comments
 (0)