diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-04-01 21:18:02 +0000 |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-04-01 21:18:02 +0000 |
commit | 3654ebc5bea1dfcec86c865f82cb737967566bc0 (patch) | |
tree | bc7040aa4850bc7e847d6a3052d36202f5907d93 /Doc/ref/ref6.tex | |
parent | f2af300f8af29424607f2a16479db4b18a6b0694 (diff) | |
download | cpython-3654ebc5bea1dfcec86c865f82cb737967566bc0.tar.gz |
Remove the following restriction:
Names bound by import statements may not occur in global
statements in the same scope.
Why not?
Diffstat (limited to 'Doc/ref/ref6.tex')
-rw-r--r-- | Doc/ref/ref6.tex | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index 0ce94be51a..7dae88a994 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -680,10 +680,6 @@ defined, the set of public names includes all names found in the module's namespace which do not begin with an underscore character (\character{_}). -Names bound by \keyword{import} statements may not occur in -\keyword{global} statements in the same scope. -\stindex{global} - The \keyword{from} form with \samp{*} may only occur in a module scope. \kwindex{from} \stindex{from} |