struct.pack has become picky about h (short) and H (unsigned short).
[python/dscho.git] / Lib / test / test_winsound.py
blob7b4fa15c0a68acfdef6db29db70bd9b40e6bed4c
1 # Ridiculously simple test of the winsound module for Windows.
3 import winsound
4 for i in range(100, 2000, 100):
5 winsound.Beep(i, 75)
6 print "Hopefully you heard some sounds increasing in frequency!"