]> granicus.if.org Git - python/commitdiff
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 10 Jul 2015 19:13:40 +0000 (22:13 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Fri, 10 Jul 2015 19:13:40 +0000 (22:13 +0300)
Lib/aifc.py
Lib/sunau.py
Lib/wave.py

index 0b4f85a305021078cde85f0e4dc30c21c3c09bc6..7ebdbeb68c1093e387046a8c616b6f41d3bce07e 100644 (file)
@@ -121,7 +121,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.
 Marks can be added anytime.  If there are any marks, you must call
 close() after all frames have been written.
index e760093dd2a94513f814605bdc34bb5f2e930ae3..0473e9e4ca15cdbc9db8367217a209efd783317d 100644 (file)
@@ -97,7 +97,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.
index 8fba70f02e37de377fc676985917fc68faef12fb..8a101e320be48a2e346dbdcc564c5507055016e8 100644 (file)
@@ -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.