Home
last modified time | relevance | path

Searched defs:_typeobject (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Doc/includes/
Dtypestruct.h1 typedef struct _typeobject { struct
3 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 …]
/third_party/python/Include/cpython/
Dobject.h193 struct _typeobject { struct
195 const char *tp_name; /* For printing, in format "<module>.<name>" */
196 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
200 destructor tp_dealloc;
201 Py_ssize_t tp_vectorcall_offset;
202 getattrfunc tp_getattr;
203 setattrfunc tp_setattr;
204 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
206 reprfunc tp_repr;
210 PyNumberMethods *tp_as_number;
[all …]