summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-07-10 22:14:08 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-07-10 22:14:08 +0300
commit16c96bb22e5ba699188079986c907cb6a8a72164 (patch)
tree81942d95f8ba722ec7a2b2d0a133c03e7d6fa91d
parent40949e0544b344855888326c0a483ea02bf254f5 (diff)
parent3d031e61994cf208fd1950791df16093582336cf (diff)
downloadcpython-git-16c96bb22e5ba699188079986c907cb6a8a72164.tar.gz
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
-rw-r--r--Lib/aifc.py2
-rw-r--r--Lib/sunau.py2
-rw-r--r--Lib/wave.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py
index 0b4f85a305..7ebdbeb68c 100644
--- a/Lib/aifc.py
+++ b/Lib/aifc.py
@@ -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.
diff --git a/Lib/sunau.py b/Lib/sunau.py
index e760093dd2..0473e9e4ca 100644
--- a/Lib/sunau.py
+++ b/Lib/sunau.py
@@ -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.
diff --git a/Lib/wave.py b/Lib/wave.py
index 8fba70f02e..8a101e320b 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.