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

neal.norwitz python-checkins at python.org
Fri Jun 1 07:20:08 CEST 2007


Author: neal.norwitz
Date: Fri Jun  1 07:20:05 2007
New Revision: 55728

Modified:
   peps/trunk/pep-3100.txt
Log:
reload is gone

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Fri Jun  1 07:20:05 2007
@@ -186,7 +186,7 @@
 * ``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]_
+* ``execfile()``, ``reload()``: use ``exec()`` [2]_ [reload: done]
 * ``intern()``: put in ``sys`` [2]_, [22]_ [done]
 * ``reduce()``: write a loop instead [2]_, [9]_ [done]
 * ``xrange()``: use ``range()`` instead [1]_ [See range() above] [done]


More information about the Python-checkins mailing list