diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-12-16 00:24:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-12-16 00:24:49 (GMT) |
commit | c144a93e987600196aaf5e8ec65a5eac76af29cd (patch) | |
tree | 4e0a4f0efec1bb7facf0934b8e7d849b57ace365 /Doc | |
parent | 518e5173fcb43f9d4c3acb20f4a0e9a8123d4923 (diff) | |
download | cpython-c144a93e987600196aaf5e8ec65a5eac76af29cd.zip cpython-c144a93e987600196aaf5e8ec65a5eac76af29cd.tar.gz cpython-c144a93e987600196aaf5e8ec65a5eac76af29cd.tar.bz2 |
property -> staticmethod
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 4992713..843bfdf 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -365,7 +365,7 @@ property. The built-in descriptors have been updated accordingly. * :class:`abc.abstractclassmethod` has been deprecated, use :class:`classmethod` with :func:`abc.abstractmethod` instead. * :class:`abc.abstractstaticmethod` has been deprecated, use - :class:`property` with :func:`abc.abstractmethod` instead. + :class:`staticmethod` with :func:`abc.abstractmethod` instead. (Contributed by Darren Dale in :issue:`11610`) |