diff options
author | Georg Brandl <georg@python.org> | 2010-07-29 16:01:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-29 16:01:11 (GMT) |
commit | 8a1caa2361b86baeadfe5343b0c74fe9dec2a4ce (patch) | |
tree | a61437b150df841a5de65b9bb92456e0e3b4139a /Doc/library/abc.rst | |
parent | b0a4e3c1a747a1f40be0d0e4d2ab785b052673c2 (diff) | |
download | cpython-8a1caa2361b86baeadfe5343b0c74fe9dec2a4ce.zip cpython-8a1caa2361b86baeadfe5343b0c74fe9dec2a4ce.tar.gz cpython-8a1caa2361b86baeadfe5343b0c74fe9dec2a4ce.tar.bz2 |
#6522: add a "decorator" directive to explicitly document decorators, and use it in a few places.
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 aa1cc78..5e87e96 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -122,7 +122,7 @@ This module provides the following class: It also provides the following decorators: -.. function:: abstractmethod(function) +.. decorator:: abstractmethod(function) A decorator indicating abstract methods. |