diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-25 18:39:31 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-25 18:39:31 +0000 |
commit | 619de8f107b854fc1a5b91f300c89253d5802cd5 (patch) | |
tree | f85912ef1c829b38503c41a265d1f28c5bc14b8a /Doc | |
parent | 6601126233eb3c7ef25e0669b72d35f3708edc6f (diff) | |
download | cpython-git-619de8f107b854fc1a5b91f300c89253d5802cd5.tar.gz |
fixed double dict.items in glossary->view
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index c4b6358132..5efc45d0e3 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -523,7 +523,7 @@ Glossary :attr:`__class__` attribute or can be retrieved with ``type(obj)``. view - The objects returned from :meth:`dict.keys`, :meth:`dict.items`, and + The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and :meth:`dict.items` are called dictionary views. They are lazy sequences that will see changes in the underlying dictionary. To force the dictionary view to become a full list use ``list(dictview)``. See |