diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-12 16:33:05 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@users.noreply.github.com> | 2017-10-12 16:33:05 (GMT) |
commit | 205dd4e14de77f9c8ed2903ddebbcf9968bbb6a9 (patch) | |
tree | 149334cae0030e9085be8c81a0b05fc2cadb7c67 /Doc/library/abc.rst | |
parent | 5f908005ce16b06d5af7b413264009c4b062f33c (diff) | |
download | cpython-205dd4e14de77f9c8ed2903ddebbcf9968bbb6a9.zip cpython-205dd4e14de77f9c8ed2903ddebbcf9968bbb6a9.tar.gz cpython-205dd4e14de77f9c8ed2903ddebbcf9968bbb6a9.tar.bz2 |
[3.6] bpo-31567: add or fix decorator markup in docs (GH-3959) (GH-3966)
(cherry picked from commit 0e61e67a57deb4abc677808201d7cf3c38138e02)
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r-- | Doc/library/abc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 6001db3..9522dd6 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -278,7 +278,7 @@ The :mod:`abc` module also provides the following decorators: :func:`abstractmethod`, making this decorator redundant. -.. decorator:: abstractproperty(fget=None, fset=None, fdel=None, doc=None) +.. decorator:: abstractproperty A subclass of the built-in :func:`property`, indicating an abstract property. |