diff options
author | Steve Dower <steve.dower@python.org> | 2022-09-23 15:08:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-23 15:08:21 (GMT) |
commit | a4ac14faa5c2be433738dfbbed14b0eaa1a2399e (patch) | |
tree | 15ec10f6bde2352ebf524e97ef8df7b528dcdc9f /Lib/test/test_wave.py | |
parent | f1cca801f50a92c0affede6bc22c3c1ec211358d (diff) | |
download | cpython-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.py | 2 |
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) |