summaryrefslogtreecommitdiffstats
path: root/Doc/library/aifc.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-16 12:01:31 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-16 12:01:31 (GMT)
commit452bab4acf57c8dd156b794fe0d1672e1ab29b43 (patch)
treed167584d1dd05c4ca5303c4ff91c2dfa927a5e06 /Doc/library/aifc.rst
parent7714ebbe0e7556bbfa6b768e434042b55474939c (diff)
downloadcpython-452bab4acf57c8dd156b794fe0d1672e1ab29b43.zip
cpython-452bab4acf57c8dd156b794fe0d1672e1ab29b43.tar.gz
cpython-452bab4acf57c8dd156b794fe0d1672e1ab29b43.tar.bz2
Issue #16685: Added support for writing any bytes-like objects in the aifc,
sunau, and wave modules.
Diffstat (limited to 'Doc/library/aifc.rst')
-rw-r--r--Doc/library/aifc.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/aifc.rst b/Doc/library/aifc.rst
index 48c3ea9..9ffb5a3 100644
--- a/Doc/library/aifc.rst
+++ b/Doc/library/aifc.rst
@@ -225,12 +225,18 @@ number of frames must be filled in.
Write data to the output file. This method can only be called after the audio
file parameters have been set.
+ .. versionchanged:: 3.4
+ Any :term:`bytes-like object`\ s are now accepted.
+
.. method:: aifc.writeframesraw(data)
Like :meth:`writeframes`, except that the header of the audio file is not
updated.
+ .. versionchanged:: 3.4
+ Any :term:`bytes-like object`\ s are now accepted.
+
.. method:: aifc.close()