mercurial/cext/osutil.c
changeset 34861 6ece4a85c350
parent 34438 b90e8da190da
child 35460 8652ab4046e4
equal deleted inserted replaced
34860:d0912876d7a7 34861:6ece4a85c350
   119 {
   119 {
   120 	o->ob_type->tp_free(o);
   120 	o->ob_type->tp_free(o);
   121 }
   121 }
   122 
   122 
   123 static PyTypeObject listdir_stat_type = {
   123 static PyTypeObject listdir_stat_type = {
   124 	PyVarObject_HEAD_INIT(NULL, 0)
   124 	PyVarObject_HEAD_INIT(NULL, 0) /* header */
   125 	"osutil.stat",             /*tp_name*/
   125 	"osutil.stat",             /*tp_name*/
   126 	sizeof(struct listdir_stat), /*tp_basicsize*/
   126 	sizeof(struct listdir_stat), /*tp_basicsize*/
   127 	0,                         /*tp_itemsize*/
   127 	0,                         /*tp_itemsize*/
   128 	(destructor)listdir_stat_dealloc, /*tp_dealloc*/
   128 	(destructor)listdir_stat_dealloc, /*tp_dealloc*/
   129 	0,                         /*tp_print*/
   129 	0,                         /*tp_print*/