summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-04-26 16:16:21 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-04-26 16:16:21 (GMT)
commita90b990480f45b6a0ad02d43455cf8b620bac9c5 (patch)
tree62ece4f66b38d48507efbbf86a0a15f972dc3e02 /Doc
parentab7886b78574d9224b26dc3a5b08e5c105fbbf11 (diff)
downloadcpython-a90b990480f45b6a0ad02d43455cf8b620bac9c5.zip
cpython-a90b990480f45b6a0ad02d43455cf8b620bac9c5.tar.gz
cpython-a90b990480f45b6a0ad02d43455cf8b620bac9c5.tar.bz2
bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1296)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/2to3.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index ace1bfa..4c9a528 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -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