diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-21 18:17:11 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-21 18:17:11 (GMT) |
commit | 6d20caa2ce34ebd35d3adc938353098f1110d9c8 (patch) | |
tree | 3f9be6b2f917a0c6e483c75504b3569e395307fe | |
parent | 543e19d9234ad433a372bf09f01cf2a0b503a1ac (diff) | |
download | cpython-6d20caa2ce34ebd35d3adc938353098f1110d9c8.zip cpython-6d20caa2ce34ebd35d3adc938353098f1110d9c8.tar.gz cpython-6d20caa2ce34ebd35d3adc938353098f1110d9c8.tar.bz2 |
Reflow paragraph to work around LaTeX2HTML dropping a space.
-rw-r--r-- | Doc/lib/libstdtypes.tex | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 01ca630..2e134db 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -393,14 +393,13 @@ The following format characters are understood: \code{x}, \code{X}, \code{e}, \code{E}, \code{f}, \code{g}, \code{G}. Width and precision may be a \code{*} to specify that an integer argument specifies the actual width or precision. The flag characters -\code{-}, \code{+}, blank, \code{\#} and \code{0} are understood. The -size specifiers \code{h}, \code{l} or \code{L} may be -present but are ignored. The \code{\%s} conversion takes any Python -object and converts it to a string using \code{str()} before -formatting it. The ANSI features \code{\%p} and \code{\%n} -are not supported. Since Python strings have an explicit length, -\code{\%s} conversions don't assume that \code{'\e0'} is the end of -the string. +\code{-}, \code{+}, blank, \code{\#} and \code{0} are understood. The +size specifiers \code{h}, \code{l} or \code{L} may be present but are +ignored. The \code{\%s} conversion takes any Python object and +converts it to a string using \code{str()} before formatting it. The +ANSI features \code{\%p} and \code{\%n} are not supported. Since +Python strings have an explicit length, \code{\%s} conversions don't +assume that \code{'\e0'} is the end of the string. For safety reasons, floating point precisions are clipped to 50; \code{\%f} conversions for numbers whose absolute value is over 1e25 |