gh-77171: Document that wave only supports simple PCM files (GH-97510)

(cherry picked from commit dc9065f8c2)

Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
Miss Islington (bot) 2022-09-23 06:04:46 -07:00 committed by GitHub
parent de9e8aeb4e
commit 2a50772b63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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: