Index: pep-3100.txt =================================================================== --- pep-3100.txt (revision 50623) +++ pep-3100.txt (working copy) @@ -210,7 +210,10 @@ not thread-safe; use ``sys.exc_info()`` or an attribute of the exception [2]_ [13]_ [#sys-module]_ * ``array.read``, ``array.write`` [#array-module]_ -* ``operator.isCallable``, ``operator.sequenceIncludes`` [#operator-module]_ +* ``operator.isCallable``: the callable builtin is going away, so there's no + need for operator.isCallable. [#operator-module]_ +* ``operator.sequenceIncludes``: made redundant by operator.contains + [#operator-module]_ * In the thread module, the aquire_lock() and release_lock() aliases for the acquire() and release() methods on lock objects. (Probably also just remove the thread module as a public API,