diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-05 21:32:52 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-05 21:32:52 +0000 |
commit | b55ce1e8b64e5440dd577d7985ac91c9030de73c (patch) | |
tree | 0a1e7e9d2a2af083957e442429f0c4f80ae8cd4c /Doc/ref/ref4.tex | |
parent | 52e2d51ef3015168fa34c8a6b4aa8c9d6835ef2e (diff) | |
download | cpython-git-b55ce1e8b64e5440dd577d7985ac91c9030de73c.tar.gz |
Fixed latex2html weirdness with footnotes.
Diffstat (limited to 'Doc/ref/ref4.tex')
-rw-r--r-- | Doc/ref/ref4.tex | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index e70c0b7cb8..8df8fc2d4d 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -70,12 +70,12 @@ bind the class or function name in the defining block), and targets that are identifiers if occurring in an assignment, \keyword{for} loop header, or in the second position of an \keyword{except} clause header. Local names are searched only on the local namespace; global -names are searched only in the global and built-in namespace.% -% -\footnote{If the code block contains \keyword{exec} statements or the -construct ``\samp{from \ldots import *}'', the semantics of local -names change: local name lookup first searches the local namespace, -then the global namespace and the built-in namespace.} +names are searched only in the global and built-in +namespace.\footnote{ +If the code block contains \keyword{exec} statements or the construct +``\samp{from \ldots import *}'', the semantics of local names change: +local name lookup first searches the local namespace, then the global +namespace and the built-in namespace.} A target occurring in a \keyword{del} statement is also considered bound for this purpose (though the actual semantics are to ``unbind'' the @@ -159,11 +159,11 @@ it is used for both. The built-in functions \function{globals()} and \function{locals()} returns a dictionary representing the current global and local namespace, respectively. The effect of modifications to this dictionary on the -namespace are undefined.% -\footnote{The current implementations return the dictionary actually -used to implement the namespace, \emph{except} for functions, where -the optimizer may cause the local namespace to be implemented -differently, and \function{locals()} returns a read-only dictionary.} +namespace are undefined.\footnote{ +The current implementations return the dictionary actually used to +implement the namespace, \emph{except} for functions, where the +optimizer may cause the local namespace to be implemented differently, +and \function{locals()} returns a read-only dictionary.} \section{Exceptions\label{exceptions}} |