mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej
This commit is contained in:
parent
d226d308a3
commit
19e69c5a20
15 changed files with 111 additions and 16 deletions
|
@ -1,6 +1,7 @@
|
|||
from test.support import TESTFN
|
||||
import unittest
|
||||
from test import audiotests
|
||||
from test import support
|
||||
from audioop import byteswap
|
||||
import sys
|
||||
import wave
|
||||
|
@ -103,5 +104,11 @@ class WavePCM32Test(WaveTest, unittest.TestCase):
|
|||
frames = byteswap(frames, 4)
|
||||
|
||||
|
||||
class MiscTestCase(unittest.TestCase):
|
||||
def test__all__(self):
|
||||
blacklist = {'WAVE_FORMAT_PCM'}
|
||||
support.check__all__(self, wave, blacklist=blacklist)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue