summaryrefslogtreecommitdiffstats
path: root/Doc/howto/descriptor.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 08:37:43 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-29 08:37:43 (GMT)
commit9bdcb3bc8a71b47ac93bf2d878e81790341d8cfb (patch)
treec74a4c18f6975968babf2af5cbb6030534710280 /Doc/howto/descriptor.rst
parent77fe77d4af87b29ce36fc6d20a097ccb9cd08f76 (diff)
downloadcpython-9bdcb3bc8a71b47ac93bf2d878e81790341d8cfb.zip
cpython-9bdcb3bc8a71b47ac93bf2d878e81790341d8cfb.tar.gz
cpython-9bdcb3bc8a71b47ac93bf2d878e81790341d8cfb.tar.bz2
Fixing broken links in doc, part 2: howto/
Diffstat (limited to 'Doc/howto/descriptor.rst')
-rw-r--r--Doc/howto/descriptor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index dc5350e..f018b0e 100644
--- a/Doc/howto/descriptor.rst
+++ b/Doc/howto/descriptor.rst
@@ -127,7 +127,7 @@ The implementation details are in :c:func:`super_getattro()` in
:source:`Objects/typeobject.c`. and a pure Python equivalent can be found in
`Guido's Tutorial`_.
-.. _`Guido's Tutorial`: https://www.python.org/2.2.3/descrintro.html#cooperation
+.. _`Guido's Tutorial`: https://www.python.org/download/releases/2.2.3/descrintro/#cooperation
The details above show that the mechanism for descriptors is embedded in the
:meth:`__getattribute__()` methods for :class:`object`, :class:`type`, and