fixed double dict.items in glossary->view

This commit is contained in:
Ezio Melotti 2009-06-25 18:39:31 +00:00
parent 6601126233
commit 619de8f107
1 changed files with 1 additions and 1 deletions

View 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