Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c1f1b commit f3255c8Copy full SHA for f3255c8
1 file changed
Doc/ref/ref6.tex
@@ -719,9 +719,9 @@ \section{The \keyword{global} statement \label{global}}
719
720
The \keyword{global} statement is a declaration which holds for the
721
entire current code block. It means that the listed identifiers are to be
722
-interpreted as globals. While \emph{using} global names is automatic
723
-if they are not defined in the local scope, \emph{assigning} to global
724
-names would be impossible without \keyword{global}.
+interpreted as globals. It would be impossible to assign to a global
+variable without \keyword{global}, although free variables may refer
+to globals without being declared global.
725
\indexiii{global}{name}{binding}
726
727
Names listed in a \keyword{global} statement must not be used in the same
0 commit comments