]> granicus.if.org Git - python/commitdiff
add a glossary entry for "view"
authorBenjamin Peterson <benjamin@python.org>
Fri, 21 Nov 2008 23:22:00 +0000 (23:22 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 21 Nov 2008 23:22:00 +0000 (23:22 +0000)
Doc/glossary.rst

index 897cb1af370e0a8ccf30eeab714e4971c118cbee..6100aff2806066ba75eeddee4506fb09b32e967e 100644 (file)
@@ -498,6 +498,13 @@ Glossary
       object has a type.  An object's type is accessible as its
       :attr:`__class__` attribute or can be retrieved with ``type(obj)``.
 
+   view
+      The objects returned from :meth:`dict.keys`, :meth:`dict.items`, 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
+      :ref:`dict-views`.
+
    virtual machine
       A computer defined entirely in software.  Python's virtual machine
       executes the :term:`bytecode` emitted by the bytecode compiler.