diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1994-02-03 14:19:21 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1994-02-03 14:19:21 (GMT) |
commit | b513c74b1b6b8e5500d7ec9c8ca4da41e77591bd (patch) | |
tree | 22c9aa4c16dd17357f928138b473179b7f901e3a /Lib/sunau.py | |
parent | 24349997409f69dd0ac96edd7fe0884d96fb2052 (diff) | |
download | cpython-b513c74b1b6b8e5500d7ec9c8ca4da41e77591bd.zip cpython-b513c74b1b6b8e5500d7ec9c8ca4da41e77591bd.tar.gz cpython-b513c74b1b6b8e5500d7ec9c8ca4da41e77591bd.tar.bz2 |
wave.py: module to read and write .wav files with the same interface
as aifc.py and sunau.py.
sunau.py: small change in comment (au -> sunau).
Diffstat (limited to 'Lib/sunau.py')
-rw-r--r-- | Lib/sunau.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/sunau.py b/Lib/sunau.py index 631d9e8..677b298 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py @@ -36,7 +36,7 @@ # Usage. # # Reading audio files: -# f = au.open(file, 'r') +# f = sunau.open(file, 'r') # where file is either the name of a file or an open file pointer. # The open file pointer must have methods read(), seek(), and close(). # When the setpos() and rewind() methods are not used, the seek() @@ -69,7 +69,7 @@ # is destroyed. # # Writing audio files: -# f = au.open(file, 'w') +# f = sunau.open(file, 'w') # where file is either the name of a file or an open file pointer. # The open file pointer must have methods write(), tell(), seek(), and # close(). |