diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-20 16:17:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-20 16:17:37 (GMT) |
commit | 2405547a2a292eee45f5ad98bded1bdfee02cc36 (patch) | |
tree | 592818fdf83d26e24ee0d9d3ef9e88f95e9ba07f /Doc | |
parent | d47667c32b85e3b1bc91113033fcab8ea06cc911 (diff) | |
download | cpython-2405547a2a292eee45f5ad98bded1bdfee02cc36.zip cpython-2405547a2a292eee45f5ad98bded1bdfee02cc36.tar.gz cpython-2405547a2a292eee45f5ad98bded1bdfee02cc36.tar.bz2 |
wrap
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/2to3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index 0fcd493..a0a4610 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -130,8 +130,8 @@ 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`. Similarly, - :meth:`dict.viewitems`, :meth:`dict.viewkeys` and :meth:`dict.viewvalues` - are converted respectively to :meth:`dict.items`, :meth:`dict.keys` and + :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`. |