Index: src/pl/plpython/plpython.c
===================================================================
RCS file: /projects/cvsroot/pgsql/src/pl/plpython/plpython.c,v
retrieving revision 1.99
diff -p -u -c -r1.99 plpython.c
*** src/pl/plpython/plpython.c	3 Apr 2007 15:50:58 -0000	1.99
--- src/pl/plpython/plpython.c	4 Apr 2007 08:28:43 -0000
*************** static PyTypeObject PLy_PlanType = {
*** 1994,2002 ****
  	/*
  	 * methods
  	 */
! 	(destructor) PLy_plan_dealloc,		/* tp_dealloc */
  	0,							/* tp_print */
! 	(getattrfunc) PLy_plan_getattr,		/* tp_getattr */
  	0,							/* tp_setattr */
  	0,							/* tp_compare */
  	0,							/* tp_repr */
--- 1994,2002 ----
  	/*
  	 * methods
  	 */
! 	PLy_plan_dealloc,			/* tp_dealloc */
  	0,							/* tp_print */
! 	PLy_plan_getattr,			/* tp_getattr */
  	0,							/* tp_setattr */
  	0,							/* tp_compare */
  	0,							/* tp_repr */
*************** static PyTypeObject PLy_ResultType = {
*** 2038,2046 ****
  	/*
  	 * methods
  	 */
! 	(destructor) PLy_result_dealloc,	/* tp_dealloc */
  	0,							/* tp_print */
! 	(getattrfunc) PLy_result_getattr,	/* tp_getattr */
  	0,							/* tp_setattr */
  	0,							/* tp_compare */
  	0,							/* tp_repr */
--- 2038,2046 ----
  	/*
  	 * methods
  	 */
! 	PLy_result_dealloc,			/* tp_dealloc */
  	0,							/* tp_print */
! 	PLy_result_getattr,			/* tp_getattr */
  	0,							/* tp_setattr */
  	0,							/* tp_compare */
  	0,							/* tp_repr */
