[Python-checkins] r55462 - peps/trunk/pep-3100.txt
neal.norwitz
python-checkins at python.org
Sun May 20 09:45:54 CEST 2007
Author: neal.norwitz
Date: Sun May 20 09:45:53 2007
New Revision: 55462
Modified:
peps/trunk/pep-3100.txt
Log:
coerce and xrange have been done
Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt (original)
+++ peps/trunk/pep-3100.txt Sun May 20 09:45:53 2007
@@ -183,11 +183,11 @@
* ``buffer()``: must die (use a bytes() type instead) (?) [2]_
* ``callable()``: just use hasattr(x, '__call__') (?) [2]_
* ``compile()``: put in ``sys`` (or perhaps in a module of its own) [2]_
-* ``coerce()``: no longer needed [2]_
+* ``coerce()``: no longer needed [2]_ [done]
* ``execfile()``, ``reload()``: use ``exec()`` [2]_
* ``intern()``: put in ``sys`` [2]_, [22]_ [done]
* ``reduce()``: write a loop instead [2]_, [9]_ [done]
-* ``xrange()``: use ``range()`` instead [1]_ [See range() above]
+* ``xrange()``: use ``range()`` instead [1]_ [See range() above] [done]
Standard library
More information about the Python-checkins
mailing list