summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-06-01 01:11:18 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-06-01 01:11:18 (GMT)
commitbcb8d3a0a5d2d7e0d962bd9164ea81128472e21c (patch)
tree781331bff9f35a2edd4aae3d9472cd1d40f4f544 /Doc/extending
parent5ab2e7403638ef0d67de6c8464bded2daa9820d6 (diff)
downloadcpython-bcb8d3a0a5d2d7e0d962bd9164ea81128472e21c.zip
cpython-bcb8d3a0a5d2d7e0d962bd9164ea81128472e21c.tar.gz
cpython-bcb8d3a0a5d2d7e0d962bd9164ea81128472e21c.tar.bz2
Merged revisions 81586 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81586 | r.david.murray | 2010-05-28 14:08:11 -0400 (Fri, 28 May 2010) | 2 lines Make reference to Generic Attribute Management a hyperlink. ........
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/newtypes.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst
index 069101d..63ea2a6 100644
--- a/Doc/extending/newtypes.rst
+++ b/Doc/extending/newtypes.rst
@@ -430,7 +430,7 @@ and put the definitions in the :attr:`tp_members` slot::
Noddy_members, /* tp_members */
Each member definition has a member name, type, offset, access flags and
-documentation string. See the "Generic Attribute Management" section below for
+documentation string. See the :ref:`Generic-Attribute-Management` section below for
details.
A disadvantage of this approach is that it doesn't provide a way to restrict the
@@ -1078,6 +1078,8 @@ disappeared starting with Python 2.2, though there are many examples which have
not been updated to use some of the new generic mechanism that is available.
+.. _generic-attribute-management:
+
Generic Attribute Management
^^^^^^^^^^^^^^^^^^^^^^^^^^^^