From 38854bbbac8896fdc25440da9d241c21f7756620 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 10 Aug 2010 00:48:49 +0000 Subject: Merged revisions 83927 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ........ r83927 | antoine.pitrou | 2010-08-10 02:45:32 +0200 (mar., 10 août 2010) | 3 lines test_winsound shouldn't crash when ctypes isn't available ........ --- Lib/test/test_winsound.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index bd95048..be0e625 100644 --- a/Lib/test/test_winsound.py +++ b/Lib/test/test_winsound.py @@ -6,9 +6,9 @@ support.requires('audio') import time import os import subprocess -import ctypes winsound = support.import_module('winsound') +ctypes = support.import_module('ctypes') import winreg def has_sound(sound): -- cgit v0.12