diff options
author | Guido van Rossum <guido@python.org> | 1993-06-01 13:21:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-06-01 13:21:04 (GMT) |
commit | 17ed1ae163f1ca6138dead19eb327f468f9995a7 (patch) | |
tree | f138c1f243560869356c3bd763b9bd05d7137f23 /Lib/aifc.py | |
parent | f3f753132a863e4b6f39e749e7e5e7ab4cd6d7a1 (diff) | |
download | cpython-17ed1ae163f1ca6138dead19eb327f468f9995a7.zip cpython-17ed1ae163f1ca6138dead19eb327f468f9995a7.tar.gz cpython-17ed1ae163f1ca6138dead19eb327f468f9995a7.tar.bz2 |
* toaiff.py: import whatsound instead of sndhdr
* sndhdr.py: renamed to whatsound.py; use new aifc module for AIFF/AIFC
* ftplib.py: added close() (closes without sending QUIT command)
* aifc.py: documented close()
Diffstat (limited to 'Lib/aifc.py')
-rw-r--r-- | Lib/aifc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py index bad5e43..e45792e 100644 --- a/Lib/aifc.py +++ b/Lib/aifc.py @@ -81,6 +81,7 @@ # rewind() -- rewind to the beginning of the audio stream # setpos(pos) -- seek to the specified position # tell() -- return the current position +# close() -- close the instance (make it unusable) # The position returned by tell(), the position given to setpos() and # the position of marks are all compatible and have nothing to do with # the actual postion in the file. |