Skip to content

Commit eec7e43

Browse files
committed
Fix links
1 parent 6d2f127 commit eec7e43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,6 @@ Thank you for considering contributing to ``attrs``!
245245
.. _`team of volunteers`: https://github.com/python-attrs
246246
.. _BDFL: https://en.wikipedia.org/wiki/Benevolent_dictator_for_life
247247
.. _towncrier: https://pypi.org/project/towncrier
248-
.. _black: https://github.com/ambv/black
248+
.. _black: https://github.com/psf/black
249249
.. _pre-commit: https://pre-commit.com/
250250
.. _isort: https://github.com/timothycrosley/isort

docs/why.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Other often surprising behaviors include:
102102
you end up with a class that has *two* ``Point``\ s in its :attr:`__mro__ <class.__mro__>`: ``[<class 'point.Point'>, <class 'point.Point'>, <type 'tuple'>, <type 'object'>]``.
103103

104104
That's not only confusing, it also has very practical consequences:
105-
for example if you create documentation that includes class hierarchies like `Sphinx's autodoc <http://www.sphinx-doc.org/en/stable/ext/autodoc.html>`_ with ``show-inheritance``.
105+
for example if you create documentation that includes class hierarchies like `Sphinx's autodoc <https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html>`_ with ``show-inheritance``.
106106
Again: common problem, hacky solution with confusing fallout.
107107

108108
All these things make ``namedtuple``\ s a particularly poor choice for public APIs because all your objects are irrevocably tainted.

0 commit comments

Comments
 (0)