[Python-checkins] cpython: property -> staticmethod

benjamin.peterson python-checkins at python.org
Fri Dec 16 01:24:53 CET 2011


http://hg.python.org/cpython/rev/8d6d068e9966
changeset:   73993:8d6d068e9966
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Dec 15 19:24:49 2011 -0500
summary:
  property -> staticmethod

files:
  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
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -365,7 +365,7 @@
   * :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`)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list