From: Andrés Delfino Date: Wed, 14 Nov 2018 00:29:57 +0000 (-0300) Subject: Link to property built-in in abc.rst (GH-10526) X-Git-Tag: v3.8.0a1~498 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf1355b4240173a306dd46e720ae4b696277bb41;p=thirdparty%2FPython%2Fcpython.git Link to property built-in in abc.rst (GH-10526) --- diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 2aba02f8cb49..0a976b12ecb9 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -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: ...