diff options
author | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
commit | 470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9 (patch) | |
tree | 4fd0b8eda81e63366598e55362ceac85adafccb4 /Doc/libaifc.tex | |
parent | 7760cdea81166b7741561043c58dae171811fb2f (diff) | |
download | cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.zip cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.gz cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.bz2 |
mass changes; fix titles; add examples; correct typos; clarifications;
unified style; etc.
Diffstat (limited to 'Doc/libaifc.tex')
-rw-r--r-- | Doc/libaifc.tex | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/libaifc.tex b/Doc/libaifc.tex index 7b4e4c8..7e595ef 100644 --- a/Doc/libaifc.tex +++ b/Doc/libaifc.tex @@ -21,8 +21,11 @@ Module \code{aifc} defines the following function: 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 -'r' when the file must be opened for reading, or 'w' when the file -must be opened for writing. +\code{'r'} when the file must be opened for reading, or \code{'w'} +when the file must be opened for writing. When used for writing, the +file object should be seekable, unless you know ahead of time how many +samples you are going to write in total and use +\code{writeframesraw()} and \code{setnframes()}. \end{funcdesc} Objects returned by \code{aifc.open()} when a file is opened for |