mirror of https://github.com/python/cpython.git
* xxobject.c: added tp_as_number, tp_as_sequence, tp_as_mapping to
the type object.
This commit is contained in:
parent
2670a16c2e
commit
70d7a310a9
|
@ -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*/
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue