mirror of https://github.com/python/cpython
Added test_winsound by Mark Hammond.
This commit is contained in:
parent
a8ee4c31bf
commit
cdd092fe48
|
@ -0,0 +1,2 @@
|
|||
test_winsound
|
||||
Hopefully you heard some sounds increasing in frequency!
|
|
@ -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!"
|
||||
|
Loading…
Reference in New Issue