revert r75090

This commit is contained in:
Benjamin Peterson 2009-10-03 15:06:21 +00:00
parent 81c9a95751
commit 5850389a10

View File

@ -804,8 +804,8 @@ Builtins
``f(*args)``.
* Removed :func:`callable`. Instead of ``callable(f)`` you can use
``hasattr(type(f), '__call__')``. The :func:`operator.isCallable` function is
also gone.
``hasattr(f, '__call__')``. The :func:`operator.isCallable` function
is also gone.
* Removed :func:`coerce`. This function no longer serves a purpose
now that classic classes are gone.