[Python-checkins] r55485 - peps/trunk/pep-3100.txt

neal.norwitz python-checkins at python.org
Mon May 21 08:59:57 CEST 2007


Author: neal.norwitz
Date: Mon May 21 08:59:52 2007
New Revision: 55485

Modified:
   peps/trunk/pep-3100.txt
Log:
Remove callable

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Mon May 21 08:59:52 2007
@@ -181,7 +181,7 @@
 
 * ``apply()``: use ``f(*args, **kw)`` instead [2]_ [done]
 * ``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]_
 * ``coerce()``: no longer needed [2]_ [done]
 * ``execfile()``, ``reload()``: use ``exec()`` [2]_


More information about the Python-checkins mailing list