Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
b3c9af17d94e7430168a63a8694e2de9eed2a8e2
/
.
/
Lib
/
test
/
test_winsound.py
blob: 363528185d61a0bea1b4462574fff2e6de78094a [
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!"