[Python-checkins] CVS: python/dist/src/Modules xxmodule.c,2.22,2.23

Martin v. L?wis loewis@users.sourceforge.net
Tue, 09 Oct 2001 03:47:01 -0700


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

Modified Files:
	xxmodule.c 
Log Message:
Add additional fields to Xxo_Type declaration.  Fixes bug #469250.


Index: xxmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/xxmodule.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -d -r2.22 -r2.23
*** xxmodule.c	2000/09/01 23:29:27	2.22
--- xxmodule.c	2001/10/09 10:46:58	2.23
***************
*** 113,116 ****
--- 113,147 ----
  	0,			/*tp_as_mapping*/
  	0,			/*tp_hash*/
+         0,                      /*tp_call*/
+         0,                      /*tp_str*/
+         0,                      /*tp_getattro*/
+         0,                      /*tp_setattro*/
+         0,                      /*tp_as_buffer*/
+         Py_TPFLAGS_DEFAULT,     /*tp_flags*/
+         0,                      /*tp_doc*/
+         0,                      /*tp_traverse*/
+         0,                      /*tp_clear*/
+         0,                      /*tp_richcompare*/
+         0,                      /*tp_weaklistoffset*/
+         0,                      /*tp_iter*/
+         0,                      /*tp_iternext*/
+         0,                      /*tp_methods*/
+         0,                      /*tp_members*/
+         0,                      /*tp_getset*/
+         0,                      /*tp_base*/
+         0,                      /*tp_dict*/
+         0,                      /*tp_descr_get*/
+         0,                      /*tp_descr_set*/
+         0,                      /*tp_dictoffset*/
+         0,                      /*tp_init*/
+         0,                      /*tp_alloc*/
+         0,                      /*tp_new*/
+         0,                      /*tp_free*/
+         0,                      /*tp_is_gc*/
+         0,                      /*tp_bases*/
+         0,                      /*tp_mro*/
+         0,                      /*tp_defined*/
+         0,                      /*tp_subclasses*/
+         0,                      /*tp_weaklist*/
  };
  /* --------------------------------------------------------------------- */