[Python-checkins] CVS: python/dist/src/Objects intobject.c,2.56.6.1,2.56.6.2

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 30 Apr 2001 07:06:23 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv24527

Modified Files:
      Tag: descr-branch
	intobject.c 
Log Message:
Line up the comments in the type structure initializer */


Index: intobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v
retrieving revision 2.56.6.1
retrieving revision 2.56.6.2
diff -C2 -r2.56.6.1 -r2.56.6.2
*** intobject.c	2001/04/30 01:14:56	2.56.6.1
--- intobject.c	2001/04/30 14:06:20	2.56.6.2
***************
*** 794,813 ****
  	sizeof(PyIntObject),
  	0,
! 	(destructor)int_dealloc, /*tp_dealloc*/
! 	(printfunc)int_print, /*tp_print*/
! 	0,		/*tp_getattr*/
! 	0,		/*tp_setattr*/
! 	(cmpfunc)int_compare, /*tp_compare*/
! 	(reprfunc)int_repr, /*tp_repr*/
! 	&int_as_number,	/*tp_as_number*/
! 	0,		/*tp_as_sequence*/
! 	0,		/*tp_as_mapping*/
! 	(hashfunc)int_hash, /*tp_hash*/
!         0,			/*tp_call*/
!         0,			/*tp_str*/
! 	PyGeneric_GetAttr,	/* tp_getattro */
! 	0,			/*tp_setattro*/
! 	0,			/*tp_as_buffer*/
! 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES	/*tp_flags*/
  };
  
--- 794,813 ----
  	sizeof(PyIntObject),
  	0,
! 	(destructor)int_dealloc,		/* tp_dealloc */
! 	(printfunc)int_print,			/* tp_print */
! 	0,					/* tp_getattr */
! 	0,					/* tp_setattr */
! 	(cmpfunc)int_compare,			/* tp_compare */
! 	(reprfunc)int_repr,			/* tp_repr */
! 	&int_as_number,				/* tp_as_number */
! 	0,					/* tp_as_sequence */
! 	0,					/* tp_as_mapping */
! 	(hashfunc)int_hash,			/* tp_hash */
!         0,					/* tp_call */
!         0,					/* tp_str */
! 	PyGeneric_GetAttr,			/* tp_getattro */
! 	0,					/* tp_setattro */
! 	0,					/* tp_as_buffer */
! 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES /* tp_flags */
  };