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

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Fri Dec 5 19:00:38 EST 2003


Update of /cvsroot/python/python/dist/src/Mac/Modules/help
In directory sc8-pr-cvs1:/tmp/cvs-serv1524/help

Modified Files:
	_Helpmodule.c 
Log Message:
Finished update to UH 3.4.2.


Index: _Helpmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/help/_Helpmodule.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** _Helpmodule.c	20 Nov 2003 13:30:57 -0000	1.11
--- _Helpmodule.c	6 Dec 2003 00:00:00 -0000	1.12
***************
*** 132,135 ****
--- 132,148 ----
  }
  
+ static PyObject *Help_HMHideTag(PyObject *_self, PyObject *_args)
+ {
+ 	PyObject *_res = NULL;
+ 	OSStatus _err;
+ 	if (!PyArg_ParseTuple(_args, ""))
+ 		return NULL;
+ 	_err = HMHideTag();
+ 	if (_err != noErr) return PyMac_Error(_err);
+ 	Py_INCREF(Py_None);
+ 	_res = Py_None;
+ 	return _res;
+ }
+ 
  static PyMethodDef Help_methods[] = {
  	{"HMGetHelpMenu", (PyCFunction)Help_HMGetHelpMenu, 1,
***************
*** 147,150 ****
--- 160,165 ----
  	{"HMSetDialogHelpFromBalloonRsrc", (PyCFunction)Help_HMSetDialogHelpFromBalloonRsrc, 1,
  	 PyDoc_STR("(DialogPtr inDialog, SInt16 inHdlgRsrcID, SInt16 inItemStart) -> None")},
+ 	{"HMHideTag", (PyCFunction)Help_HMHideTag, 1,
+ 	 PyDoc_STR("() -> None")},
  	{NULL, NULL, 0}
  };





More information about the Python-checkins mailing list