diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-07-10 19:13:40 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-07-10 19:13:40 (GMT) |
commit | e0fd7ef6bb0ddfc36337f434ae6bbfc5c0b60afa (patch) | |
tree | 81583787a9de5bb98d01abc532388b21b75faf4f /Lib/wave.py | |
parent | e6ecea53c8394b5101bb3ddab3216a948065ef97 (diff) | |
download | cpython-e0fd7ef6bb0ddfc36337f434ae6bbfc5c0b60afa.zip cpython-e0fd7ef6bb0ddfc36337f434ae6bbfc5c0b60afa.tar.gz cpython-e0fd7ef6bb0ddfc36337f434ae6bbfc5c0b60afa.tar.bz2 |
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
Diffstat (limited to 'Lib/wave.py')
-rw-r--r-- | Lib/wave.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wave.py b/Lib/wave.py index 8fba70f..8a101e3 100644 --- a/Lib/wave.py +++ b/Lib/wave.py @@ -65,7 +65,7 @@ but when it is set to the correct value, the header does not have to be patched up. It is best to first set all parameters, perhaps possibly the compression type, and then write audio frames using writeframesraw. -When all frames have been written, either call writeframes('') or +When all frames have been written, either call writeframes(b'') or close() to patch up the sizes in the header. The close() method is called automatically when the class instance is destroyed. |