]> granicus.if.org Git - python/commitdiff
Added documentation for dictionary views fixer.
authorAlexandre Vassalotti <alexandre@peadrop.com>
Tue, 12 Jan 2010 18:25:33 +0000 (18:25 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Tue, 12 Jan 2010 18:25:33 +0000 (18:25 +0000)
Doc/library/2to3.rst

index 20a6245dc656d989e1d38ab1c115cb7630e22e7a..6f675b0576546656b4b3a0746f9dc2ccbf3f63c4 100644 (file)
@@ -129,9 +129,11 @@ and off individually.  They are described here in more detail.
 
    Fixes dictionary iteration methods.  :meth:`dict.iteritems` is converted to
    :meth:`dict.items`, :meth:`dict.iterkeys` to :meth:`dict.keys`, and
-   :meth:`dict.itervalues` to :meth:`dict.values`.  It also wraps existing
-   usages of :meth:`dict.items`, :meth:`dict.keys`, and :meth:`dict.values` in a
-   call to :class:`list`.
+   :meth:`dict.itervalues` to :meth:`dict.values`.  Similarly,
+   :meth:`dict.viewitems`, :meth:`dict.viewkeys` and :meth:`dict.viewvalues`
+   are converted respectively to :meth:`dict.items`, :meth:`dict.keys` and
+   :meth:`dict.values`.  It also wraps existing usages of :meth:`dict.items`,
+   :meth:`dict.keys`, and :meth:`dict.values` in a call to :class:`list`.
 
 .. 2to3fixer:: except