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

collin.winter python-checkins at python.org
Wed Mar 21 21:15:09 CET 2007


Author: collin.winter
Date: Wed Mar 21 21:15:07 2007
New Revision: 54494

Modified:
   peps/trunk/pep-3100.txt
Log:
Mark the removal of isCallable() and sequenceIncludes() from operator as 'done'.

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Wed Mar 21 21:15:07 2007
@@ -225,9 +225,9 @@
   functionality [24]_ [#pep3110]_ [#sys-module]_
 * ``array.read``, ``array.write`` [#array-module]_
 * ``operator.isCallable`` : ``callable()`` built-in is being removed
-  [#operator-module]_
+  [#operator-module]_ [#remove-operator-funcs]_ [done]
 * ``operator.sequenceIncludes`` : redundant thanks to
-  ``operator.contains`` [#operator-module]_
+  ``operator.contains`` [#operator-module]_  [#remove-operator-funcs]_ [done]
 * 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,
@@ -390,6 +390,9 @@
    
 .. [#exitfunc-patch] Patch to remove sys.exitfunc
    http://www.python.org/sf/1680961
+   
+.. [#remove-operator-funcs] Remove deprecated functions from operator
+   http://www.python.org/sf/1516309
 
 Copyright
 =========


More information about the Python-checkins mailing list