Skip to content

Commit 64f62ef

Browse files
committed
Update broken links
1 parent f6526b7 commit 64f62ef

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ analysis platform from UC Santa Barbara; `Trio`_, an async I/O library; and
8989
`Dask Distributed`_, a distributed computation library supported by Continuum
9090
Analytics.
9191

92-
.. _`Fellow of the Python Software Foundation`: http://en.wikipedia.org/wiki/Alex_Martelli
92+
.. _`Fellow of the Python Software Foundation`: https://en.wikipedia.org/wiki/Alex_Martelli
9393
.. _`simple, effective implementation`: http://www.grantjenks.com/docs/sortedcontainers/implementation.html
94-
.. _`author of Writing Idiomatic Python and Python Trainer`: http://reviews.jeffknupp.com/reviews/sortedcontainers/3/
94+
.. _`author of Writing Idiomatic Python and Python Trainer`: https://jeffknupp.com/
9595
.. _`Python and Django Trainer`: https://www.elephorm.com/formateur/kevin-samuel
9696
.. _`Python Sorted Collections`: http://www.qtrac.eu/pysorted.html
9797
.. _`Zipline`: https://github.com/quantopian/zipline
@@ -175,8 +175,8 @@ introduction, implementation, performance, and development.
175175
API Documentation
176176
.................
177177

178-
If you are looking for information on a specific function, class or method, this
179-
part of the documentation is for you.
178+
If you are looking for information on a specific function, class or method,
179+
this part of the documentation is for you.
180180

181181
- `Sorted List`_
182182
- `Sorted Dict`_

docs/development.rst

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ Collaborators are welcome!
55

66
#. Check for open issues or open a fresh issue to start a discussion around a
77
bug.
8-
#. Fork `the repository <https://github.com/grantjenks/python-sortedcontainers>`_ on
9-
GitHub and start making your changes to a new branch.
8+
#. Fork the `repository`_ on GitHub and start making your changes to a new
9+
branch.
1010
#. Write a test which shows that the bug was fixed.
1111
#. Send a pull request and bug the maintainer until it gets merged and
1212
published :)
1313

14+
.. _`repository`: https://github.com/grantjenks/python-sortedcontainers
15+
1416
Development Lead
1517
----------------
1618

@@ -37,7 +39,7 @@ is to clone the repository from GitHub::
3739
Development Dependencies
3840
------------------------
3941

40-
Install development dependencies with `pip <https://pypi.org/project/pip/>`_::
42+
Install development dependencies with `pip`_::
4143

4244
$ pip install -r requirements.txt
4345

@@ -48,12 +50,13 @@ Some alternative implementations, such as `banyan`, may have issues when
4850
installing on Windows. You can still develop :doc:`Sorted Containers<index>`
4951
without these packages. They will be omitted from benchmarking.
5052

53+
.. _`pip`: https://pypi.org/project/pip/
54+
5155
Testing
5256
-------
5357

54-
Testing uses `tox <https://pypi.org/project/tox/>`_. If you don't want to
55-
install all the development requirements, then, after downloading, you can
56-
simply run::
58+
Testing uses `tox`_. If you don't want to install all the development
59+
requirements, then, after downloading, you can simply run::
5760

5861
$ python setup.py test
5962

@@ -113,7 +116,7 @@ and run the tests.
113116
py36: commands succeeded
114117
lint: commands succeeded
115118

116-
Coverage testing uses `pytest-cov <https://pypi.org/project/pytest-cov/>`_:
119+
Coverage testing uses `pytest-cov`_:
117120

118121
::
119122

@@ -220,5 +223,10 @@ of Python:
220223
* PyPy
221224
* PyPy3
222225

223-
Life will feel much saner if you use `virtualenv <http://www.virtualenv.org/>`_
224-
and `tox` to manage and test each of the runtimes.
226+
Life will feel much saner if you use `venv`_ or `virtualenv`_ and `tox`_ to
227+
manage and test each of the runtimes.
228+
229+
.. _`tox`: https://pypi.org/project/tox/
230+
.. _`pytest-cov`: https://pypi.org/project/pytest-cov/
231+
.. _`venv`: https://docs.python.org/3/library/venv.html
232+
.. _`virtualenv`: https://pypi.org/project/virtualenv/

docs/pycon-2016-talk.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Thanks for letting me share.
397397
.. _`collections.OrderedDict`: https://docs.python.org/3/library/collections.html#collections.OrderedDict
398398
.. _`Sqlite in-memory indexes`: https://www.sqlite.org/lang_createindex.html
399399
.. _`pandas.DataFrame indexes`: http://pandas.pydata.org/pandas-docs/stable/indexing.html
400-
.. _`Redis sorted sets`: http://redis.io/commands#sorted_set
400+
.. _`Redis sorted sets`: https://redis.io/topics/data-types
401401
.. _`MutableSequence`: https://docs.python.org/3/library/collections.abc.html#collections-abstract-base-classes
402402
.. _`PyPI`: https://pypi.org/
403403
.. _`Dan Stromberg`: http://stromberg.dnsalias.org/~dstromberg/datastructures/
@@ -433,7 +433,7 @@ Thanks for letting me share.
433433
.. _`.NET`: https://www.microsoft.com/net
434434
.. _`Python`: https://www.python.org/
435435
.. _`PHP`: http://php.net/
436-
.. _`Javascript`: http://www.ecmascript.org/
436+
.. _`Javascript`: https://en.wikipedia.org/wiki/ECMAScript
437437
.. _`MutableMapping`: https://docs.python.org/3/library/collections.abc.html#collections-abstract-base-classes
438438
.. _`MutableSet`: https://docs.python.org/3/library/collections.abc.html#collections-abstract-base-classes
439439
.. _`load parameters`: http://www.grantjenks.com/docs/sortedcontainers/performance-load.html

0 commit comments

Comments
 (0)