diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/lib/libstruct.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/lib/libstruct.tex')
-rw-r--r-- | Doc/lib/libstruct.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libstruct.tex b/Doc/lib/libstruct.tex index d0fde4f..b92076c 100644 --- a/Doc/lib/libstruct.tex +++ b/Doc/lib/libstruct.tex @@ -16,14 +16,14 @@ The module defines the following exception and functions: describing what is wrong. \end{excdesc} -\begin{funcdesc}{pack}{fmt\, v1\, v2\, {\rm \ldots}} +\begin{funcdesc}{pack}{fmt, v1, v2, {\rm \ldots}} Return a string containing the values \code{\var{v1}, \var{v2}, {\rm \ldots}} packed according to the given format. The arguments must match the values required by the format exactly. \end{funcdesc} -\begin{funcdesc}{unpack}{fmt\, string} +\begin{funcdesc}{unpack}{fmt, string} Unpack the string (presumably packed by \code{pack(\var{fmt}, {\rm \ldots})}) according to the given format. The result is a tuple even if it contains exactly one item. The string must contain exactly the |