From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 14 Nov 2018 00:47:31 +0000 (-0800) Subject: Link to property built-in in abc.rst (GH-10526) X-Git-Tag: v3.6.8rc1~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2897a04c983abe8ed4e6c2663335b5c54e86d9f5;p=thirdparty%2FPython%2Fcpython.git Link to property built-in in abc.rst (GH-10526) (cherry picked from commit bf1355b4240173a306dd46e720ae4b696277bb41) Co-authored-by: Andrés Delfino --- diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 70710761a395..c1b1e07e2a74 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: ...