From: Ezio Melotti Date: Sun, 31 Jul 2011 19:49:18 +0000 (+0300) Subject: Fix typo reported by Sandro Tosi. X-Git-Tag: v3.2.2rc1~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=222e61e44454611f2b037a2a596eb60c5b7fb695;p=thirdparty%2FPython%2Fcpython.git Fix typo reported by Sandro Tosi. --- diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 81bb8ca534d7..1616f67e126d 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -42,7 +42,7 @@ classes (a class is new style if it inherits from :class:`object` or Descriptors are a powerful, general purpose protocol. They are the mechanism behind properties, methods, static methods, class methods, and :func:`super()`. -They are used used throughout Python itself to implement the new style classes +They are used throughout Python itself to implement the new style classes introduced in version 2.2. Descriptors simplify the underlying C-code and offer a flexible set of new tools for everyday Python programs.