summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_winsound.py
blob: 901b7019ccc5601275b0fa242f2145ec3ac2acfc (plain)
1
2
3
4
5
6
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!"