diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2020-10-23 19:55:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 19:55:39 (GMT) |
commit | 8d3d7314d44d762a6fb42d079f57b6b5273473d6 (patch) | |
tree | cf01bd788cfa99aad36ed95f5b960d335528405a /Doc/glossary.rst | |
parent | 7c4065d305228aa406675224d631f81964d12855 (diff) | |
download | cpython-8d3d7314d44d762a6fb42d079f57b6b5273473d6.zip cpython-8d3d7314d44d762a6fb42d079f57b6b5273473d6.tar.gz cpython-8d3d7314d44d762a6fb42d079f57b6b5273473d6.tar.bz2 |
Create a primer section for the descriptor howto guide (GH-22906)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 4f0654b..32aa12a 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -301,7 +301,8 @@ Glossary including functions, methods, properties, class methods, static methods, and reference to super classes. - For more information about descriptors' methods, see :ref:`descriptors`. + For more information about descriptors' methods, see :ref:`descriptors` + or the :ref:`Descriptor How To Guide <descriptorhowto>`. dictionary An associative array, where arbitrary keys are mapped to values. The |