commit | 0d19eaf1eb1d4c110d4ec6826a5b30343b63e7e6 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon Dec 28 20:51:17 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Mon Dec 28 20:51:17 2009 +0000 |
tree | 6744bcf31763c6c8be0c3c780bb274847c8554a0 | |
parent | 66d8d69cd8754b76cb36a041d1c37e72b188378f [diff] |
document new fix_callable behavior
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index d9eb00c..20a6245 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst
@@ -122,7 +122,8 @@ .. 2to3fixer:: callable - Converts ``callable(x)`` to ``hasattr(x, "__call_")``. + Converts ``callable(x)`` to ``isinstance(x, collections.Callable)``, adding + an import to :mod:`collections` if needed. .. 2to3fixer:: dict