[Python-checkins] CVS: python/dist/src/PC winsound.c,1.3,1.4

Tim Peters tim_one@users.sourceforge.net
Thu, 25 Jan 2001 12:40:30 -0800


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv1347/python/dist/src/pc

Modified Files:
	winsound.c 
Log Message:
New info in beep() docstring.


Index: winsound.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/winsound.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** winsound.c	2000/07/22 19:25:51	1.3
--- winsound.c	2001/01/25 20:40:28	1.4
***************
*** 50,54 ****
  "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";
  
  static char sound_module_doc[] =
--- 50,57 ----
  "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"
! "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[] =