[Python-checkins] r73562 - python/branches/py3k/Doc/glossary.rst

ezio.melotti python-checkins at python.org
Thu Jun 25 20:39:36 CEST 2009


Author: ezio.melotti
Date: Thu Jun 25 20:39:31 2009
New Revision: 73562

Log:
fixed double dict.items in glossary->view

Modified:
   python/branches/py3k/Doc/glossary.rst

Modified: python/branches/py3k/Doc/glossary.rst
==============================================================================
--- python/branches/py3k/Doc/glossary.rst	(original)
+++ python/branches/py3k/Doc/glossary.rst	Thu Jun 25 20:39:31 2009
@@ -523,7 +523,7 @@
       :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


More information about the Python-checkins mailing list