repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This commit was manufactured by cvs2svn to create tag 'r211c1'.
[python/dscho.git]
/
Lib
/
test
/
test_winsound.py
blob
363528185d61a0bea1b4462574fff2e6de78094a
1
# Ridiculously simple test of the winsound module for Windows.
2
3
import
winsound
4
for
i
in
range
(
100
,
2000
,
100
):
5
winsound
.
Beep
(
i
,
75
)
6
print
"Hopefully you heard some sounds increasing in frequency!"