diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-05-21 11:35:03 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-05-21 11:35:03 (GMT) |
commit | 87d8200978e519dabb9ef0d1d982c17b6bf9fba9 (patch) | |
tree | 7c57be670f55b29c9af6b336b3ea7fd1bd8e56ff /Doc/library/ossaudiodev.rst | |
parent | 44f7cf0b2f48a4d2073382423e1b15f0d76f2551 (diff) | |
parent | dfa465243c94b540099c413eb79b2774b40bb82e (diff) | |
download | cpython-87d8200978e519dabb9ef0d1d982c17b6bf9fba9.zip cpython-87d8200978e519dabb9ef0d1d982c17b6bf9fba9.tar.gz cpython-87d8200978e519dabb9ef0d1d982c17b6bf9fba9.tar.bz2 |
#14804: Remove [] around optional arguments with default values
Diffstat (limited to 'Doc/library/ossaudiodev.rst')
-rw-r--r-- | Doc/library/ossaudiodev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ossaudiodev.rst b/Doc/library/ossaudiodev.rst index 51c5857..d9e3eae 100644 --- a/Doc/library/ossaudiodev.rst +++ b/Doc/library/ossaudiodev.rst @@ -281,7 +281,7 @@ The following convenience methods combine several ioctls, or one ioctl and some simple calculations. -.. method:: oss_audio_device.setparameters(format, nchannels, samplerate [, strict=False]) +.. method:: oss_audio_device.setparameters(format, nchannels, samplerate, strict=False) Set the key audio sampling parameters---sample format, number of channels, and sampling rate---in one method call. *format*, *nchannels*, and *samplerate* |