From c144a93e987600196aaf5e8ec65a5eac76af29cd Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 15 Dec 2011 19:24:49 -0500 Subject: [PATCH] property -> staticmethod --- Doc/whatsnew/3.3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 4992713346e..843bfdfd108 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`)