[3.6] bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1303)

This commit is contained in:
Dong-hee Na 2017-04-27 01:55:55 +09:00 committed by Mariatta
parent 04f389b8b3
commit 2fc3c543fc
1 changed files with 0 additions and 7 deletions

View File

@ -199,13 +199,6 @@ and off individually. They are described here in more detail.
because the :class:`memoryview` API is similar but not exactly the same as
that of :class:`buffer`.
.. 2to3fixer:: callable
Converts ``callable(x)`` to ``isinstance(x, collections.Callable)``, adding
an import to :mod:`collections` if needed. Note ``callable(x)`` has returned
in Python 3.2, so if you do not intend to support Python 3.1, you can disable
this fixer.
.. 2to3fixer:: dict
Fixes dictionary iteration methods. :meth:`dict.iteritems` is converted to