Skip to content

Commit

Permalink
✏️ Add links to Python docs
Browse files Browse the repository at this point in the history
  • Loading branch information
veit committed Nov 28, 2023
1 parent 5fec0e9 commit f7dc52d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/productive/qa/anti-patterns.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ Reduce code with ``dataclasses`` and ``attrs``
introduced in Python 3.7 and there is also a backport for Python 3.6. They are
meant to simplify the definition of classes that are mainly created to store
values and can then be accessed via attribute search. Some examples are
``collection.namedtuple``, ``Typing.NamedTuple``, Recipes to Records [#]_ and
Nested Dicts [#]_. Data classes save you from writing and managing these
methods.
:func:`collections.namedtuple`, +:py:class:`typing.NamedTuple`, Recipes to
Records [#]_ and Nested Dicts [#]_. Data classes save you from writing and
managing these methods.

.. seealso::
* :pep:`557` – Data Classes
Expand Down

0 comments on commit f7dc52d

Please sign in to comment.