Link to property built-in in abc.rst (GH-10526)

This commit is contained in:
Andrés Delfino 2018-11-13 21:29:57 -03:00 committed by Miss Islington (bot)
parent daeb3c4c58
commit bf1355b424

View file

@ -217,7 +217,7 @@ The :mod:`abc` module also provides the following decorator:
the descriptor must identify itself as abstract using
:attr:`__isabstractmethod__`. In general, this attribute should be ``True``
if any of the methods used to compose the descriptor are abstract. For
example, Python's built-in property does the equivalent of::
example, Python's built-in :class:`property` does the equivalent of::
class Descriptor:
...