diff options
author | Guido van Rossum <guido@python.org> | 1998-04-23 21:40:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-23 21:40:02 (GMT) |
commit | bb189dbcb0d2b9aca6f1aeb492bdbe2362e3a78b (patch) | |
tree | 23d94b57dc78e852ec24626bd80d6121b6c9e439 /Lib/sunau.py | |
parent | 1740b8d2f7b50d64e4c44a9e0f02a17bde3750ea (diff) | |
download | cpython-bb189dbcb0d2b9aca6f1aeb492bdbe2362e3a78b.zip cpython-bb189dbcb0d2b9aca6f1aeb492bdbe2362e3a78b.tar.gz cpython-bb189dbcb0d2b9aca6f1aeb492bdbe2362e3a78b.tar.bz2 |
Small corrections to comments that were cloned from aifc; moreover
the description of setparams() was wrong.
wave.py: Include the tag of an unknown format in the exception.
Diffstat (limited to 'Lib/sunau.py')
-rw-r--r-- | Lib/sunau.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/sunau.py b/Lib/sunau.py index aeac20e..02c13f55 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py @@ -48,9 +48,9 @@ # getsampwidth() -- returns sample width in bytes # getframerate() -- returns sampling frequency # getnframes() -- returns number of audio frames -# getcomptype() -- returns compression type ('NONE' for AIFF files) +# getcomptype() -- returns compression type ('NONE' or 'ULAW') # getcompname() -- returns human-readable version of -# compression type ('not compressed' for AIFF files) +# compression type ('not compressed' matches 'NONE') # getparams() -- returns a tuple consisting of all of the # above in the above order # getmarkers() -- returns None (for compatibility with the @@ -82,8 +82,7 @@ # setcomptype(type, name) # -- set the compression type and the # human-readable compression type -# setparams(nchannels, sampwidth, framerate, nframes, comptype, compname) -# -- set all parameters at once +# setparams(tuple)-- set all parameters at once # tell() -- return current position in output file # writeframesraw(data) # -- write audio frames without pathing up the |