From 23cfc9845c9b0fdeb4759bd120cf6a465bf0af9e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 21 Aug 2007 22:49:52 +0000 Subject: Convert sunaudio.py to bytes. (It has no unit test of its own!) Fix test_ossaudiodev by closing the dsp properly (it can't be opened multiple times on my box). --- Lib/test/test_ossaudiodev.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/test_ossaudiodev.py') diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py index eb15e8890d..0cdc93cc73 100644 --- a/Lib/test/test_ossaudiodev.py +++ b/Lib/test/test_ossaudiodev.py @@ -170,6 +170,7 @@ def test_main(): errno.ENODEV, errno.EBUSY): raise TestSkipped(msg) raise + dsp.close() test_support.run_unittest(__name__) if __name__ == "__main__": -- cgit v1.2.1