[Python-checkins] Link to property built-in in abc.rst (GH-10526)

Miss Islington (bot) webhook-mailer at python.org
Tue Nov 13 19:30:00 EST 2018


https://github.com/python/cpython/commit/bf1355b4240173a306dd46e720ae4b696277bb41
commit: bf1355b4240173a306dd46e720ae4b696277bb41
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2018-11-13T16:29:57-08:00
summary:

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

files:
M Doc/library/abc.rst

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:
           ...



More information about the Python-checkins mailing list