commit | 23cfc9845c9b0fdeb4759bd120cf6a465bf0af9e | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Aug 21 22:49:52 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Aug 21 22:49:52 2007 +0000 |
tree | c667e0c8bd44497830063df70cdd06e2e9d0598f | |
parent | 003b09883ee3a710e85a68183861168c059ef773 [diff] |
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).
diff --git a/Lib/test/test_ossaudiodev.py b/Lib/test/test_ossaudiodev.py index eb15e88..0cdc93c 100644 --- a/Lib/test/test_ossaudiodev.py +++ b/Lib/test/test_ossaudiodev.py
@@ -170,6 +170,7 @@ errno.ENODEV, errno.EBUSY): raise TestSkipped(msg) raise + dsp.close() test_support.run_unittest(__name__) if __name__ == "__main__":