diff options
author | Georg Brandl <georg@python.org> | 2009-04-02 02:56:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-02 02:56:10 (GMT) |
commit | b868a66ccb9cde89d934a896fe3c5629ed007d42 (patch) | |
tree | 93830f2ea5ec9dfe170e2d3139429933917ce7ed /Doc/library/abc.rst | |
parent | acc9dcc6888d310ec084925d84441779cce0d03d (diff) | |
download | cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.zip cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.gz cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.bz2 |
First batch of signature documentation changes; using default argument syntax where applicable.
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 42f508d..31bd896 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -158,7 +158,7 @@ It also provides the following decorators: multiple-inheritance. -.. function:: abstractproperty(fget[, fset[, fdel[, doc]]]) +.. function:: abstractproperty(fget=None, fset=None, fdel=None, doc=None) A subclass of the built-in :func:`property`, indicating an abstract property. |