diff options
author | Éric Araujo <aeric@mtlpy.org> | 2012-12-09 03:53:43 (GMT) |
---|---|---|
committer | Éric Araujo <aeric@mtlpy.org> | 2012-12-09 03:53:43 (GMT) |
commit | 3f7c0e403606f7e888442048ac71cb8f391e8d83 (patch) | |
tree | b9bd563ea0facf995a395d22b9c8ad043648ba5e /Doc/library/abc.rst | |
parent | f93ed3fa67260fa0023a1360a37ab7e320550455 (diff) | |
parent | 24457c9ad375239aca9bd176284d1e4f181e02f4 (diff) | |
download | cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.zip cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.tar.gz cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.tar.bz2 |
Merge fixes for #13614, #13512 and #7719 from 3.2
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r-- | Doc/library/abc.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index db3adbd..6f23596 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -129,7 +129,7 @@ This module provides the following class: The :mod:`abc` module also provides the following decorators: -.. decorator:: abstractmethod(function) +.. decorator:: abstractmethod A decorator indicating abstract methods. @@ -203,7 +203,7 @@ The :mod:`abc` module also provides the following decorators: multiple-inheritance. -.. decorator:: abstractclassmethod(function) +.. decorator:: abstractclassmethod A subclass of the built-in :func:`classmethod`, indicating an abstract classmethod. Otherwise it is similar to :func:`abstractmethod`. @@ -224,7 +224,7 @@ The :mod:`abc` module also provides the following decorators: :func:`abstractmethod`, making this decorator redundant. -.. decorator:: abstractstaticmethod(function) +.. decorator:: abstractstaticmethod A subclass of the built-in :func:`staticmethod`, indicating an abstract staticmethod. Otherwise it is similar to :func:`abstractmethod`. |