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

neal.norwitz python-checkins at python.org
Sun Aug 5 04:21:19 CEST 2007


Author: neal.norwitz
Date: Sun Aug  5 04:20:27 2007
New Revision: 56749

Modified:
   peps/trunk/pep-3100.txt
Log:
Make from X import * outside module scope an error.

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Sun Aug  5 04:20:27 2007
@@ -80,7 +80,7 @@
   will raise an exception unless explicitly supported by the type [6]_ [done]
 * floats will not be acceptable as arguments in place of ints for operations
   where floats are inadvertantly accepted (PyArg_ParseTuple() i & l formats)
-* Remove from ... import * at function scope.  This means that functions
+* Remove from ... import * at function scope.  [done] This means that functions
   can always be optimized and support for unoptimized functions can go away.
 * Imports [#pep328]_
     + Imports will be absolute by default. [done]


More information about the Python-checkins mailing list