@@ -188,9 +188,9 @@ \subsection{Numeric Types \label{typesnumeric}}
188188`` smaller'' type is converted to that of the other, where plain
189189integer is smaller than long integer is smaller than floating point is
190190smaller than complex.
191- Comparisons between numbers of mixed type use the same rule.%
192- \footnote { As a consequence, the list \code {[1, 2]} is considered equal
193- to \code {[1.0, 2.0]}, and similar for tuples.}
191+ Comparisons between numbers of mixed type use the same rule.\footnote {
192+ As a consequence, the list \code {[1, 2]} is considered equal
193+ to \code {[1.0, 2.0]}, and similar for tuples.}
194194The functions \function {int()}, \function {long()}, \function {float()},
195195and \function {complex()} can be used
196196to coerce numbers to a specific type.
@@ -386,8 +386,8 @@ \subsubsection{More String Operations \label{typesseq-strings}}
386386
387387The right argument should be a tuple with one item for each argument
388388required by the format string; if the string requires a single
389- argument, the right argument may also be a single non-tuple object. %
390- \footnote {A tuple object in this case should be a singleton.}
389+ argument, the right argument may also be a single non-tuple
390+ object. \footnote {A tuple object in this case should be a singleton.}
391391The following format characters are understood:
392392\code {\% }, \code {c}, \code {s}, \code {i}, \code {d}, \code {u}, \code {o},
393393\code {x}, \code {X}, \code {e}, \code {E}, \code {f}, \code {g}, \code {G}.
@@ -404,11 +404,11 @@ \subsubsection{More String Operations \label{typesseq-strings}}
404404
405405For safety reasons, floating point precisions are clipped to 50;
406406\code {\% f} conversions for numbers whose absolute value is over 1e25
407- are replaced by \code {\% g} conversions.%
408- \footnote { These numbers are fairly arbitrary. They are intended to
409- avoid printing endless strings of meaningless digits without hampering
410- correct use and without having to know the exact precision of floating
411- point values on a particular machine.}
407+ are replaced by \code {\% g} conversions.\footnote {
408+ These numbers are fairly arbitrary. They are intended to
409+ avoid printing endless strings of meaningless digits without hampering
410+ correct use and without having to know the exact precision of floating
411+ point values on a particular machine.}
412412All other errors raise exceptions.
413413
414414If the right argument is a dictionary (or any kind of mapping), then
@@ -763,8 +763,8 @@ \subsubsection{File Objects \label{bltin-file-objects}}
763763
764764\begin {methoddesc }[file]{readline}{\optional {size}}
765765 Read one entire line from the file. A trailing newline character is
766- kept in the string%
767- \footnote { The advantage of leaving the newline on is that an empty string
766+ kept in the string\footnote {
767+ The advantage of leaving the newline on is that an empty string
768768 can be returned to mean \EOF {} without being ambiguous. Another
769769 advantage is that (in cases where it might matter, e.g. if you
770770 want to make an exact copy of a file while scanning its lines)
0 commit comments