diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-20 04:24:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-20 04:24:09 (GMT) |
commit | 0aa811c527372fbee0e20192bba3cf343a744e08 (patch) | |
tree | ab0d86073c96b664d6b9d87ea84cdb8cdb263755 /Doc/lib/libstring.tex | |
parent | 64a5aaf05ca20bdbd72c30fa0cfdda2ae9a347d9 (diff) | |
download | cpython-0aa811c527372fbee0e20192bba3cf343a744e08.zip cpython-0aa811c527372fbee0e20192bba3cf343a744e08.tar.gz cpython-0aa811c527372fbee0e20192bba3cf343a744e08.tar.bz2 |
Use the \note and \warning macros where appropriate.
Diffstat (limited to 'Doc/lib/libstring.tex')
-rw-r--r-- | Doc/lib/libstring.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libstring.tex b/Doc/lib/libstring.tex index 7e74c18..5f71ec8 100644 --- a/Doc/lib/libstring.tex +++ b/Doc/lib/libstring.tex @@ -100,11 +100,11 @@ The functions defined in this module are: this behaves identical to the built-in function \function{float()}\bifuncindex{float} when passed a string. - \strong{Note:} When passing in a string, values for NaN\index{NaN} + \note{When passing in a string, values for NaN\index{NaN} and Infinity\index{Infinity} may be returned, depending on the underlying C library. The specific set of strings accepted which cause these values to be returned depends entirely on the C library - and is known to vary. + and is known to vary.} \end{funcdesc} \begin{funcdesc}{atoi}{s\optional{, base}} @@ -194,10 +194,10 @@ The functions defined in this module are: each character in \var{from} into the character at the same position in \var{to}; \var{from} and \var{to} must have the same length. - \strong{Warning:} don't use strings derived from \constant{lowercase} + \warning{Don't use strings derived from \constant{lowercase} and \constant{uppercase} as arguments; in some locales, these don't have the same length. For case conversions, always use - \function{lower()} and \function{upper()}. + \function{lower()} and \function{upper()}.} \end{funcdesc} \begin{funcdesc}{split}{s\optional{, sep\optional{, maxsplit}}} |