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/libaifc.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/libaifc.tex')
-rw-r--r-- | Doc/lib/libaifc.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libaifc.tex b/Doc/lib/libaifc.tex index 34df720..8bb88a1 100644 --- a/Doc/lib/libaifc.tex +++ b/Doc/lib/libaifc.tex @@ -24,7 +24,7 @@ second's worth occupies 2*2*44100 bytes, i.e.\ 176,400 bytes. Module \code{aifc} defines the following function: \setindexsubitem{(in module aifc)} -\begin{funcdesc}{open}{file\, mode} +\begin{funcdesc}{open}{file, mode} Open an AIFF or AIFF-C file and return an object instance with methods that are described below. The argument file is either a string naming a file or a file object. The mode is either the string @@ -146,7 +146,7 @@ If this parameter is not set, or not set correctly, the file needs to support seeking. \end{funcdesc} -\begin{funcdesc}{setcomptype}{type\, name} +\begin{funcdesc}{setcomptype}{type, name} Specify the compression type. If not specified, the audio data will not be compressed. In AIFF files, compression is not possible. The name parameter should be a human-readable description of the @@ -155,14 +155,14 @@ string. Currently the following compression types are supported: NONE, ULAW, ALAW, G722. \end{funcdesc} -\begin{funcdesc}{setparams}{nchannels\, sampwidth\, framerate\, comptype\, compname} +\begin{funcdesc}{setparams}{nchannels, sampwidth, framerate, comptype, compname} Set all the above parameters at once. The argument is a tuple consisting of the various parameters. This means that it is possible to use the result of a \code{getparams()} call as argument to \code{setparams()}. \end{funcdesc} -\begin{funcdesc}{setmark}{id\, pos\, name} +\begin{funcdesc}{setmark}{id, pos, name} Add a mark with the given id (larger than 0), and the given name at the given position. This method can be called at any time before \code{close()}. |