diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-31 19:50:01 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-31 19:50:01 (GMT) |
commit | e906c13da45eb320b11eaa59404e24ab44f69ce5 (patch) | |
tree | 162b24e1597f62fd7b16432fb45e3a63b74658cd /Doc/howto | |
parent | 9e2e99097cee234a3be025b968fb7ffff0f05f3e (diff) | |
parent | 222e61e44454611f2b037a2a596eb60c5b7fb695 (diff) | |
download | cpython-e906c13da45eb320b11eaa59404e24ab44f69ce5.zip cpython-e906c13da45eb320b11eaa59404e24ab44f69ce5.tar.gz cpython-e906c13da45eb320b11eaa59404e24ab44f69ce5.tar.bz2 |
Merge typo fix.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/descriptor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 81bb8ca..1616f67 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. |