[Python-checkins] python/dist/src/Mac/Modules/menu _Menumodule.c,1.11,1.12

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 16 Aug 2002 02:09:31 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules/menu
In directory usw-pr-cvs1:/tmp/cvs-serv18405/menu

Modified Files:
	_Menumodule.c 
Log Message:
Regenerated with PyDoc_STR() around docstrings.


Index: _Menumodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/menu/_Menumodule.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** _Menumodule.c	23 Apr 2002 22:44:26 -0000	1.11
--- _Menumodule.c	16 Aug 2002 09:09:28 -0000	1.12
***************
*** 2598,3001 ****
  static PyMethodDef MenuObj_methods[] = {
  	{"DisposeMenu", (PyCFunction)MenuObj_DisposeMenu, 1,
! 	 "() -> None"},
  	{"CalcMenuSize", (PyCFunction)MenuObj_CalcMenuSize, 1,
! 	 "() -> None"},
  
  #if !TARGET_API_MAC_CARBON
  	{"CountMItems", (PyCFunction)MenuObj_CountMItems, 1,
! 	 "() -> (short _rv)"},
  #endif
[...1088 lines suppressed...]
  #if TARGET_API_MAC_CARBON
  	{"SetMenuCommandMark", (PyCFunction)Menu_SetMenuCommandMark, 1,
! 	 PyDoc_STR("(MenuHandle inMenu, MenuCommand inCommandID, UniChar inMark) -> None")},
  #endif
  
  #if TARGET_API_MAC_CARBON
  	{"GetMenuCommandMark", (PyCFunction)Menu_GetMenuCommandMark, 1,
! 	 PyDoc_STR("(MenuHandle inMenu, MenuCommand inCommandID) -> (UniChar outMark)")},
  #endif
  
  #if TARGET_API_MAC_CARBON
  	{"GetMenuCommandPropertySize", (PyCFunction)Menu_GetMenuCommandPropertySize, 1,
! 	 PyDoc_STR("(MenuHandle inMenu, MenuCommand inCommandID, OSType inPropertyCreator, OSType inPropertyTag) -> (ByteCount outSize)")},
  #endif
  
  #if TARGET_API_MAC_CARBON
  	{"RemoveMenuCommandProperty", (PyCFunction)Menu_RemoveMenuCommandProperty, 1,
! 	 PyDoc_STR("(MenuHandle inMenu, MenuCommand inCommandID, OSType inPropertyCreator, OSType inPropertyTag) -> None")},
  #endif
  	{NULL, NULL, 0}