Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
879f0f11ba8b8d8098916235e1b5931a3eb6c8b5
/
.
/
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!"