Remove callable

This commit is contained in:
Neal Norwitz 2007-05-21 06:59:52 +00:00
parent d1a663faf1
commit 408d2ae4c8
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ To be removed:
* ``apply()``: use ``f(*args, **kw)`` instead [2]_ [done] * ``apply()``: use ``f(*args, **kw)`` instead [2]_ [done]
* ``buffer()``: must die (use a bytes() type instead) (?) [2]_ * ``buffer()``: must die (use a bytes() type instead) (?) [2]_
* ``callable()``: just use hasattr(x, '__call__') (?) [2]_ * ``callable()``: just use hasattr(x, '__call__') (?) [2]_ [done]
* ``compile()``: put in ``sys`` (or perhaps in a module of its own) [2]_ * ``compile()``: put in ``sys`` (or perhaps in a module of its own) [2]_
* ``coerce()``: no longer needed [2]_ [done] * ``coerce()``: no longer needed [2]_ [done]
* ``execfile()``, ``reload()``: use ``exec()`` [2]_ * ``execfile()``, ``reload()``: use ``exec()`` [2]_