]> granicus.if.org Git - python/commitdiff
fixed double dict.items in glossary->view
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 25 Jun 2009 18:39:31 +0000 (18:39 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 25 Jun 2009 18:39:31 +0000 (18:39 +0000)
Doc/glossary.rst

index c4b6358132f3817c3040accdc5bb7eae82f82bcd..5efc45d0e32ea7bd2ee6ea7bc310a7d4b3c218c9 100644 (file)
@@ -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