[Python-checkins] python/dist/src/Mac/Modules/qd _Qdmodule.c,1.10,1.11

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


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

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


Index: _Qdmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/qd/_Qdmodule.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** _Qdmodule.c	17 Jul 2002 16:30:35 -0000	1.10
--- _Qdmodule.c	16 Aug 2002 09:09:29 -0000	1.11
***************
*** 471,477 ****
  static PyMethodDef BMObj_methods[] = {
  	{"getdata", (PyCFunction)BMObj_getdata, 1,
! 	 "(int start, int size) -> string. Return bytes from the bitmap"},
  	{"putdata", (PyCFunction)BMObj_putdata, 1,
! 	 "(int start, string data). Store bytes into the bitmap"},
  	{NULL, NULL, 0}
  };
--- 471,477 ----
  static PyMethodDef BMObj_methods[] = {
  	{"getdata", (PyCFunction)BMObj_getdata, 1,
[...1312 lines suppressed...]
  	{"FrameRgn", (PyCFunction)Qd_FrameRgn, 1,
! 	 PyDoc_STR("(RgnHandle rgn) -> None")},
  	{"PaintRgn", (PyCFunction)Qd_PaintRgn, 1,
! 	 PyDoc_STR("(RgnHandle rgn) -> None")},
  	{"InvertRgn", (PyCFunction)Qd_InvertRgn, 1,
! 	 PyDoc_STR("(RgnHandle rgn) -> None")},
  	{"FillRgn", (PyCFunction)Qd_FillRgn, 1,
! 	 PyDoc_STR("(RgnHandle rgn, Pattern pat) -> None")},
  	{"GetPixel", (PyCFunction)Qd_GetPixel, 1,
! 	 PyDoc_STR("(short h, short v) -> (Boolean _rv)")},
  	{"PtInRect", (PyCFunction)Qd_PtInRect, 1,
! 	 PyDoc_STR("(Point pt, Rect r) -> (Boolean _rv)")},
  	{"DrawText", (PyCFunction)Qd_DrawText, 1,
! 	 PyDoc_STR("(Buffer textBuf, short firstByte, short byteCount) -> None")},
  	{"BitMap", (PyCFunction)Qd_BitMap, 1,
! 	 PyDoc_STR("Take (string, int, Rect) argument and create BitMap")},
  	{"RawBitMap", (PyCFunction)Qd_RawBitMap, 1,
! 	 PyDoc_STR("Take string BitMap and turn into BitMap object")},
  	{NULL, NULL, 0}
  };