summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-10 00:47:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-10 00:47:48 (GMT)
commit920e7e9ffcf0c3b118fa18c4438569392c8160c6 (patch)
tree0ead4f4352b6f1e2f3cc72a781ed9f2f8a75f900 /Lib/test
parent8174c362566488083d786c903d40481f87d8bd18 (diff)
downloadcpython-920e7e9ffcf0c3b118fa18c4438569392c8160c6.zip
cpython-920e7e9ffcf0c3b118fa18c4438569392c8160c6.tar.gz
cpython-920e7e9ffcf0c3b118fa18c4438569392c8160c6.tar.bz2
Merged revisions 83927 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ 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 ........
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_winsound.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py
index 366c74b..821d684 100644
--- a/Lib/test/test_winsound.py
+++ b/Lib/test/test_winsound.py
@@ -5,9 +5,9 @@ from test import test_support
import time
import os
import subprocess
-import ctypes
winsound = test_support.import_module('winsound')
+ctypes = test_support.import_module('ctypes')
import _winreg
def has_sound(sound):