]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-77171: Document that wave only supports simple PCM files (GH-97510)
authorSteve Dower <steve.dower@python.org>
Fri, 23 Sep 2022 12:55:06 +0000 (13:55 +0100)
committerPablo Galindo <pablogsal@gmail.com>
Sat, 22 Oct 2022 19:06:02 +0000 (20:06 +0100)
Doc/library/wave.rst

index f63e0d3dce19c6383828cf2bedbc587f88f2888b..d50aabd5b9c4d91be2c5a2bc35276e642d0fc109 100644 (file)
@@ -12,7 +12,8 @@
 --------------
 
 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 files using ``WAVE_FORMAT_PCM`` are supported. Note that this does not
+include files using ``WAVE_FORMAT_EXTENSIBLE`` even if the subformat is PCM.
 
 The :mod:`wave` module defines the following function and exception: