diff options
author | Fred Drake <fdrake@acm.org> | 1998-10-21 00:26:56 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-10-21 00:26:56 (GMT) |
commit | dad11321eb86f1cae326ad68569e7e7bc8b8e28c (patch) | |
tree | c9e38b6b47bf3f4bb9e836ffa9cf59881fbee850 | |
parent | 3041b0715b8c93b7b6b5253ef673ac8f8530b938 (diff) | |
download | cpython-dad11321eb86f1cae326ad68569e7e7bc8b8e28c.zip cpython-dad11321eb86f1cae326ad68569e7e7bc8b8e28c.tar.gz cpython-dad11321eb86f1cae326ad68569e7e7bc8b8e28c.tar.bz2 |
Remove a bunch of unnecessary "%" characters that cause problems with
the latest latex2html beta.
-rw-r--r-- | Doc/ref/ref4.tex | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index b5ed417..e70c0b7 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -105,34 +105,34 @@ imported (i.e., when it is loaded). Note that in almost all cases, the global namespace is the namespace of the containing module --- scopes in Python do not nest! -\begin{tableiv}{l|l|l|l}{textrm}% +\begin{tableiv}{l|l|l|l}{textrm} {Code block type}{Global namespace}{Local namespace}{Notes} - \lineiv{Module}% - {n.s. for this module}% + \lineiv{Module} + {n.s. for this module} {same as global}{} - \lineiv{Script (file or command)}% - {n.s. for \module{__main__}}% + \lineiv{Script (file or command)} + {n.s. for \module{__main__}} {same as global}{(1)} - \lineiv{Interactive command}% - {n.s. for \module{__main__}}% + \lineiv{Interactive command} + {n.s. for \module{__main__}} {same as global}{} - \lineiv{Class definition}% - {global n.s. of containing block}% + \lineiv{Class definition} + {global n.s. of containing block} {new n.s.}{} - \lineiv{Function body}% - {global n.s. of containing block}% + \lineiv{Function body} + {global n.s. of containing block} {new n.s.}{(2)} - \lineiv{String passed to \keyword{exec} statement}% - {global n.s. of containing block}% + \lineiv{String passed to \keyword{exec} statement} + {global n.s. of containing block} {local n.s. of containing block}{(2), (3)} - \lineiv{String passed to \function{eval()}}% - {global n.s. of caller}% + \lineiv{String passed to \function{eval()}} + {global n.s. of caller} {local n.s. of caller}{(2), (3)} - \lineiv{File read by \function{execfile()}}% - {global n.s. of caller}% + \lineiv{File read by \function{execfile()}} + {global n.s. of caller} {local n.s. of caller}{(2), (3)} - \lineiv{Expression read by \function{input()}}% - {global n.s. of caller}% + \lineiv{Expression read by \function{input()}} + {global n.s. of caller} {local n.s. of caller}{} \end{tableiv} \refbimodindex{__main__} |