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.h191 struct _typeobject { struct
193 const char *tp_name; /* For printing, in format "<module>.<name>" */
194 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
198 destructor tp_dealloc;
199 Py_ssize_t tp_vectorcall_offset;
200 getattrfunc tp_getattr;
201 setattrfunc tp_setattr;
202 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
204 reprfunc tp_repr;
208 PyNumberMethods *tp_as_number;
[all …]