diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-04-01 21:18:02 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-04-01 21:18:02 (GMT) |
commit | 15b68976da65bc3827a6783e36d13248f2dc7e6f (patch) | |
tree | e155d745aca8bf16113bc141c714dd33ac341049 /Doc/ref | |
parent | d09ed68aeb015d97dfa03b9e3489a9c190f3a760 (diff) | |
download | cpython-15b68976da65bc3827a6783e36d13248f2dc7e6f.zip cpython-15b68976da65bc3827a6783e36d13248f2dc7e6f.tar.gz cpython-15b68976da65bc3827a6783e36d13248f2dc7e6f.tar.bz2 |
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')
-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 0ce94be..7dae88a 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} |