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

guido.van.rossum python-checkins at python.org
Sat Nov 24 18:54:55 CET 2007


Author: guido.van.rossum
Date: Sat Nov 24 18:54:55 2007
New Revision: 59175

Modified:
   peps/trunk/pep-3100.txt
Log:
Dropping unbound methods has become more likely.


Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Sat Nov 24 18:54:55 2007
@@ -121,7 +121,7 @@
 * ```x```: use ``repr(x)`` [2]_ [done]
 * The ``<>`` operator: use ``!=`` instead [3]_ [done]
 * The __mod__ and __divmod__ special methods on float. [they should stay] [21]_
-* Might drop unbound methods? [7]_ [UNLIKELY]
+* Drop unbound methods[7]_ [25]_
 * METH_OLDARGS
 * WITH_CYCLE_GC [done]
 * __getslice__, __setslice__, __delslice__ [#sequence-types]_;
@@ -343,6 +343,9 @@
 .. [25] python-3000 email ("Py3.0 Library Ideas")
    http://mail.python.org/pipermail/python-3000/2007-February/005726.html
 
+.. [26] python-dev email ("Should we do away with unbound methods in Py3k?")
+   http://mail.python.org/pipermail/python-dev/2007-November/075279.html
+
 .. [#sys-module] Python docs (sys -- System-specific parameters and functions)
    http://docs.python.org/lib/module-sys.html
 


More information about the Python-checkins mailing list