Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
2650a42f0bf1688b6b51bf5b4fb13974589ad937
/
.
/
Lib
/
test
/
test_winsound.py
blob: 7b4fa15c0a68acfdef6db29db70bd9b40e6bed4c [
file
] [
log
] [
blame
]
# 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!"