Make from X import * outside module scope an error.
This commit is contained in:
parent
daec32d317
commit
c490101cdf
|
@ -80,7 +80,7 @@ Core language
|
||||||
will raise an exception unless explicitly supported by the type [6]_ [done]
|
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
|
* floats will not be acceptable as arguments in place of ints for operations
|
||||||
where floats are inadvertantly accepted (PyArg_ParseTuple() i & l formats)
|
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.
|
can always be optimized and support for unoptimized functions can go away.
|
||||||
* Imports [#pep328]_
|
* Imports [#pep328]_
|
||||||
+ Imports will be absolute by default. [done]
|
+ Imports will be absolute by default. [done]
|
||||||
|
|
Loading…
Reference in New Issue