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/libxdrlib.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/libxdrlib.tex')
-rw-r--r-- | Doc/lib/libxdrlib.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libxdrlib.tex b/Doc/lib/libxdrlib.tex index 221a578..62e9df7 100644 --- a/Doc/lib/libxdrlib.tex +++ b/Doc/lib/libxdrlib.tex @@ -96,7 +96,7 @@ the individual item. At the end of the list, an unsigned integer \code{0} is packed. \end{funcdesc} -\begin{funcdesc}{pack_farray}{n\, array\, pack_item} +\begin{funcdesc}{pack_farray}{n, array, pack_item} Packs a fixed length list (\var{array}) of homogeneous items. \var{n} is the length of the list; it is \emph{not} packed into the buffer, but a \exception{ValueError} exception is raised if @@ -104,7 +104,7 @@ but a \exception{ValueError} exception is raised if \var{pack_item} is the function used to pack each element. \end{funcdesc} -\begin{funcdesc}{pack_array}{list\, pack_item} +\begin{funcdesc}{pack_array}{list, pack_item} Packs a variable length \var{list} of homogeneous items. First, the length of the list is packed as an unsigned integer, then each element is packed as in \method{pack_farray()} above. @@ -192,7 +192,7 @@ then the item is unpacked and appended to the list. A flag of function that is called to unpack the items. \end{funcdesc} -\begin{funcdesc}{unpack_farray}{n\, unpack_item} +\begin{funcdesc}{unpack_farray}{n, unpack_item} Unpacks and returns (as a list) a fixed length array of homogeneous items. \var{n} is number of list elements to expect in the buffer. As above, \var{unpack_item} is the function used to unpack each element. |