diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-25 20:40:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-25 20:40:28 (GMT) |
commit | be30c6b900ca42806f59be8d28b332bff08f8a09 (patch) | |
tree | 00ed4f3edfa66013c2a22851e1f5eb21d29218b8 /PC | |
parent | cd804108548e1939bd8646634ed52ef388ee9f44 (diff) | |
download | cpython-be30c6b900ca42806f59be8d28b332bff08f8a09.zip cpython-be30c6b900ca42806f59be8d28b332bff08f8a09.tar.gz cpython-be30c6b900ca42806f59be8d28b332bff08f8a09.tar.bz2 |
New info in beep() docstring.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/winsound.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index a9c14a6..bc96387 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -49,7 +49,10 @@ static char sound_beep_doc[] = "\n" "The frequency argument specifies frequency, in hertz, of the sound.\n" "This parameter must be in the range 37 through 32,767 (0x25 through 0x7FFF).\n" -"The duration argument specifies the number of milli-seconds.\n"; +"The duration argument specifies the number of milli-seconds.\n" +"Note: Under Windows 95 and 98, the arguments are ignored; if the system\n" +"has a sound card, the system default sound is played; else (no sound card)\n" +"the standard system beep.\n"; static char sound_module_doc[] = "PlaySound(sound, flags) - play a sound\n" |