]> granicus.if.org Git - python/commitdiff
property -> staticmethod
authorBenjamin Peterson <benjamin@python.org>
Fri, 16 Dec 2011 00:24:49 +0000 (19:24 -0500)
committerBenjamin Peterson <benjamin@python.org>
Fri, 16 Dec 2011 00:24:49 +0000 (19:24 -0500)
Doc/whatsnew/3.3.rst

index 4992713346e04ec1481319df1797f30f31f3eaa1..843bfdfd108ed2a889965b8df7cf165b280dd18e 100644 (file)
@@ -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`)