Kaydet (Commit) b513c74b authored tarafından Sjoerd Mullender's avatar Sjoerd Mullender

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).
üst 24349997
...@@ -36,7 +36,7 @@ ...@@ -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 @@ ...@@ -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().
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment