Searched defs:_typeobject (Results 1 – 4 of 4) sorted by relevance
1 typedef struct _typeobject { struct3 char *tp_name; /* For printing, in format "<module>.<name>" */4 int tp_basicsize, tp_itemsize; /* For allocation */8 destructor tp_dealloc;9 printfunc tp_print;10 getattrfunc tp_getattr;11 setattrfunc tp_setattr;12 cmpfunc tp_compare;13 reprfunc tp_repr;17 PyNumberMethods *tp_as_number;[all …]
1 typedef struct _typeobject { struct3 const char *tp_name; /* For printing, in format "<module>.<name>" */4 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */8 destructor tp_dealloc;9 Py_ssize_t tp_vectorcall_offset;10 getattrfunc tp_getattr;11 setattrfunc tp_setattr;12 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)14 reprfunc tp_repr;18 PyNumberMethods *tp_as_number;[all …]
177 typedef struct _typeobject { struct179 const char *tp_name; /* For printing, in format "<module>.<name>" */180 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */184 destructor tp_dealloc;185 Py_ssize_t tp_vectorcall_offset;186 getattrfunc tp_getattr;187 setattrfunc tp_setattr;188 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)190 reprfunc tp_repr;194 PyNumberMethods *tp_as_number;[all …]
324 typedef struct _typeobject { struct326 const char *tp_name; /* For printing, in format "<module>.<name>" */327 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */331 destructor tp_dealloc;332 printfunc tp_print;333 getattrfunc tp_getattr;334 setattrfunc tp_setattr;335 cmpfunc tp_compare;336 reprfunc tp_repr;340 PyNumberMethods *tp_as_number;[all …]