From c490101cdfdd321c010ab71ec9fcbc036de2580b Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 5 Aug 2007 02:20:27 +0000 Subject: [PATCH] Make from X import * outside module scope an error. --- pep-3100.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-3100.txt b/pep-3100.txt index 2c73a7f88..762c95e7d 100644 --- a/pep-3100.txt +++ b/pep-3100.txt @@ -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]