diff options
author | Greg Ward <gward@python.net> | 2003-03-10 03:18:19 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-03-10 03:18:19 (GMT) |
commit | cd930f52586c5324d54a9cc4838344d32eb9d4fc (patch) | |
tree | b1e7575c73bc80ab8d3fcdb168c205702ff33652 /Doc | |
parent | 0b6dfb808cf3b6738bf92427b01c82856f7d5ef6 (diff) | |
download | cpython-cd930f52586c5324d54a9cc4838344d32eb9d4fc.zip cpython-cd930f52586c5324d54a9cc4838344d32eb9d4fc.tar.gz cpython-cd930f52586c5324d54a9cc4838344d32eb9d4fc.tar.bz2 |
openmixer()'s 'mode' parameter has been removed.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libossaudiodev.tex | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Doc/lib/libossaudiodev.tex b/Doc/lib/libossaudiodev.tex index 0e4cebf..414ec67 100644 --- a/Doc/lib/libossaudiodev.tex +++ b/Doc/lib/libossaudiodev.tex @@ -61,16 +61,12 @@ activity needed. Further, some soundcards are half-duplex: they can be opened for reading or writing, but not both at once. \end{funcdesc} -\begin{funcdesc}{openmixer}{\optional{device\optional{, mode}}} +\begin{funcdesc}{openmixer}{\optional{device}} Open a mixer device and return an OSS mixer device object. \var{device} is the mixer device filename to use. If it is not specified, this module first looks in the environment variable \envvar{MIXERDEV} for a device to use. If not found, it falls back to -\file{/dev/mixer}. You may specify \code{'r'}, \code{'rw'} or -\code{'w'} for \var{mode}; the default is \code{'r'}. - -% XXX I suspect 'mode' is irrelevant, ie. that OSS doesn't care. -% If so this argument and the code that handles it should be ripped out. +\file{/dev/mixer}. \end{funcdesc} |