diff --git a/Lib/test/output/test_winsound b/Lib/test/output/test_winsound new file mode 100644 index 00000000000..f361e933a9d --- /dev/null +++ b/Lib/test/output/test_winsound @@ -0,0 +1,2 @@ +test_winsound +Hopefully you heard some sounds increasing in frequency! diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py new file mode 100644 index 00000000000..901b7019ccc --- /dev/null +++ b/Lib/test/test_winsound.py @@ -0,0 +1,7 @@ +# Rediculously simple test of the winsound module for Windows. + +import winsound +for i in range(100, 2000, 100): + winsound.Beep(i, 75) +print "Hopefully you heard some sounds increasing in frequency!" +