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.h148 struct _typeobject { struct
150 const char *tp_name; /* For printing, in format "<module>.<name>" */
151 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
155 destructor tp_dealloc;
156 Py_ssize_t tp_vectorcall_offset;
157 getattrfunc tp_getattr;
158 setattrfunc tp_setattr;
159 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
161 reprfunc tp_repr;
165 PyNumberMethods *tp_as_number;
[all …]