From: Ezio Melotti Date: Thu, 25 Jun 2009 18:39:31 +0000 (+0000) Subject: fixed double dict.items in glossary->view X-Git-Tag: v3.1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=619de8f107b854fc1a5b91f300c89253d5802cd5;p=thirdparty%2FPython%2Fcpython.git fixed double dict.items in glossary->view --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index c4b6358132f3..5efc45d0e32e 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