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/libzlib.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/libzlib.tex')
-rw-r--r-- | Doc/libzlib.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libzlib.tex b/Doc/libzlib.tex index 9234c5f..c4ad987 100644 --- a/Doc/libzlib.tex +++ b/Doc/libzlib.tex @@ -14,7 +14,7 @@ later version if one is available. The available functions in this module are: \setindexsubitem{(in module zlib)} -\begin{funcdesc}{adler32}{string\optional{\, value}} +\begin{funcdesc}{adler32}{string\optional{, value}} Computes a Adler-32 checksum of \var{string}. (An Adler-32 checksum is almost as reliable as a CRC32 but can be computed much more quickly.) If \var{value} is present, it is used as the @@ -25,7 +25,7 @@ The available functions in this module are: authentication or digital signatures. \end{funcdesc} -\begin{funcdesc}{compress}{string\optional{\, level}} +\begin{funcdesc}{compress}{string\optional{, level}} Compresses the data in \var{string}, returning a string contained compressed data. \var{level} is an integer from \code{1} to \code{9} controlling the level of compression; \code{1} is fastest and produces @@ -42,7 +42,7 @@ exception if any error occurs. produces the most. The default value is \code{6}. \end{funcdesc} -\begin{funcdesc}{crc32}{string\optional{\, value}} +\begin{funcdesc}{crc32}{string\optional{, value}} Computes a CRC (Cyclic Redundancy Check) sum of \var{string}. If \var{value} is present, it is used as the starting value of the checksum; otherwise, a fixed default value is used. This allows |