Added test_winsound by Mark Hammond.

This commit is contained in:
Guido van Rossum 2000-04-21 21:28:47 +00:00
parent a8ee4c31bf
commit cdd092fe48
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,2 @@
test_winsound
Hopefully you heard some sounds increasing in frequency!

View File

@ -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!"