This commit was manufactured by cvs2svn to create tag 'r211c1'.
[python/dscho.git] / Lib / test / test_winsound.py
blob363528185d61a0bea1b4462574fff2e6de78094a
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!"