diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-25 18:39:31 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-25 18:39:31 (GMT) |
commit | 619de8f107b854fc1a5b91f300c89253d5802cd5 (patch) | |
tree | f85912ef1c829b38503c41a265d1f28c5bc14b8a | |
parent | 6601126233eb3c7ef25e0669b72d35f3708edc6f (diff) | |
download | cpython-619de8f107b854fc1a5b91f300c89253d5802cd5.zip cpython-619de8f107b854fc1a5b91f300c89253d5802cd5.tar.gz cpython-619de8f107b854fc1a5b91f300c89253d5802cd5.tar.bz2 |
fixed double dict.items in glossary->view
-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 c4b6358..5efc45d 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 |