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).
This commit is contained in:
Sjoerd Mullender 1994-02-03 14:19:21 +00:00
parent 2434999740
commit b513c74b1b
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
# Usage. # Usage.
# #
# Reading audio files: # 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. # 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(). # The open file pointer must have methods read(), seek(), and close().
# When the setpos() and rewind() methods are not used, the seek() # When the setpos() and rewind() methods are not used, the seek()
@ -69,7 +69,7 @@
# is destroyed. # is destroyed.
# #
# Writing audio files: # 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. # 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 # The open file pointer must have methods write(), tell(), seek(), and
# close(). # close().