summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2022-09-23 15:08:21 (GMT)
committerGitHub <noreply@github.com>2022-09-23 15:08:21 (GMT)
commita4ac14faa5c2be433738dfbbed14b0eaa1a2399e (patch)
tree15ec10f6bde2352ebf524e97ef8df7b528dcdc9f /Doc/library
parentf1cca801f50a92c0affede6bc22c3c1ec211358d (diff)
downloadcpython-a4ac14faa5c2be433738dfbbed14b0eaa1a2399e.zip
cpython-a4ac14faa5c2be433738dfbbed14b0eaa1a2399e.tar.gz
cpython-a4ac14faa5c2be433738dfbbed14b0eaa1a2399e.tar.bz2
gh-77171: Fixes SubFormat check to compare the entire value. Add docs (GH-97509)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/wave.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/library/wave.rst b/Doc/library/wave.rst
index f63e0d3..04a28d9 100644
--- a/Doc/library/wave.rst
+++ b/Doc/library/wave.rst
@@ -12,7 +12,12 @@
--------------
The :mod:`wave` module provides a convenient interface to the WAV sound format.
-It does not support compression/decompression, but it does support mono/stereo.
+Only PCM encoded wave files are supported.
+
+.. versionchanged:: 3.12
+
+ Support for ``WAVE_FORMAT_EXTENSIBLE`` headers was added, provided that the
+ extended format is ``KSDATAFORMAT_SUBTYPE_PCM``.
The :mod:`wave` module defines the following function and exception: