diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2017-04-26 16:55:32 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-04-26 16:55:32 (GMT) |
commit | 19b3a4885cc685adb42db6f8f7b625768f6d1baf (patch) | |
tree | 4cce5696d0156813a206d206811e61070cc8007b | |
parent | bfc7dff63b9b30371e3423a5c35ccda2f3b52218 (diff) | |
download | cpython-19b3a4885cc685adb42db6f8f7b625768f6d1baf.zip cpython-19b3a4885cc685adb42db6f8f7b625768f6d1baf.tar.gz cpython-19b3a4885cc685adb42db6f8f7b625768f6d1baf.tar.bz2 |
[2.7] bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1305)
-rw-r--r-- | Doc/library/2to3.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index 0632f3c..b782875 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 |