summaryrefslogtreecommitdiff
path: root/Doc/library/2to3.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/2to3.rst')
-rw-r--r--Doc/library/2to3.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index d07aaa11a1..1e5f42d05a 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -264,8 +264,7 @@ and off individually. They are described here in more detail.
.. 2to3fixer:: long
- Strips the ``L`` prefix on long literals and renames :class:`long` to
- :class:`int`.
+ Renames :class:`long` to :class:`int`.
.. 2to3fixer:: map
@@ -291,11 +290,11 @@ and off individually. They are described here in more detail.
Converts the use of iterator's :meth:`~iterator.next` methods to the
:func:`next` function. It also renames :meth:`next` methods to
- :meth:`~object.__next__`.
+ :meth:`~iterator.__next__`.
.. 2to3fixer:: nonzero
- Renames :meth:`~object.__nonzero__` to :meth:`~object.__bool__`.
+ Renames :meth:`__nonzero__` to :meth:`~object.__bool__`.
.. 2to3fixer:: numliterals