]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
wave.py: module to read and write .wav files with the same interface
authorSjoerd Mullender <sjoerd@acm.org>
Thu, 3 Feb 1994 14:19:21 +0000 (14:19 +0000)
committerSjoerd Mullender <sjoerd@acm.org>
Thu, 3 Feb 1994 14:19:21 +0000 (14:19 +0000)
as aifc.py and sunau.py.
sunau.py: small change in comment (au -> sunau).

Lib/sunau.py

index 631d9e88358c285ad82d68be873cbbf52606bbd0..677b298998b102d6bf50d9b0f0c1fe5d98d7d9e9 100644 (file)
@@ -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().