summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_wave.py
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 /Lib/test/test_wave.py
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 'Lib/test/test_wave.py')
-rw-r--r--Lib/test/test_wave.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py
index 35660fd..6c33628 100644
--- a/Lib/test/test_wave.py
+++ b/Lib/test/test_wave.py
@@ -133,7 +133,7 @@ class WavePCM32Test(WaveTest, unittest.TestCase):
class MiscTestCase(unittest.TestCase):
def test__all__(self):
- not_exported = {'WAVE_FORMAT_PCM', 'WAVE_FORMAT_EXTENSIBLE'}
+ not_exported = {'WAVE_FORMAT_PCM', 'WAVE_FORMAT_EXTENSIBLE', 'KSDATAFORMAT_SUBTYPE_PCM'}
support.check__all__(self, wave, not_exported=not_exported)