Make from X import * outside module scope an error.

This commit is contained in:
Neal Norwitz 2007-08-05 02:20:27 +00:00
parent daec32d317
commit c490101cdf
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ Core language
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]