summaryrefslogtreecommitdiffstats
path: root/Objects/xxobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/xxobject.c')
-rw-r--r--Objects/xxobject.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/Objects/xxobject.c b/Objects/xxobject.c
index bfe9c84..7ab7a73 100644
--- a/Objects/xxobject.c
+++ b/Objects/xxobject.c
@@ -123,10 +123,13 @@ static typeobject Xxtype = {
sizeof(xxobject), /*tp_size*/
0, /*tp_itemsize*/
/* methods */
- xx_dealloc, /*tp_dealloc*/
- 0, /*tp_print*/
- xx_getattr, /*tp_getattr*/
- xx_setattr, /*tp_setattr*/
- 0, /*tp_compare*/
- 0, /*tp_repr*/
+ xx_dealloc, /*tp_dealloc*/
+ 0, /*tp_print*/
+ xx_getattr, /*tp_getattr*/
+ xx_setattr, /*tp_setattr*/
+ 0, /*tp_compare*/
+ 0, /*tp_repr*/
+ 0, /*tp_as_number*/
+ 0, /*tp_as_sequence*/
+ 0, /*tp_as_mapping*/
};