Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
8586991099e4ace18ee94163a96b8ea1bed77ebe
/
.
/
Lib
/
test
/
test_winsound.py
blob: 7b4fa15c0a68acfdef6db29db70bd9b40e6bed4c [
file
]
# Ridiculously 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!"