类型对象¶
Python 对象系统中最重要的一个结构体也许是定义新类型的结构体: PyTypeObject
结构体。 类型对象可以使用任何 PyObject_*
或 PyType_*
函数来处理,但并未提供大多数 Python 应用程序会感兴趣的东西。 这些对象是对象行为的基础,所以它们对解释器本身及任何实现新类型的扩展模块都非常重要。
与大多数标准类型相比,类型对象相当大。这么大的原因是每个类型对象存储了大量的值,大部分是C函数指针,每个指针实现了类型功能的一小部分。本节将详细描述类型对象的字段。这些字段将按照它们在结构中出现的顺序进行描述。
除了下面的快速参考, 例子 小节提供了快速了解 PyTypeObject
的含义和用法的例子。
快速参考¶
"tp_方法槽"¶
PyTypeObject 槽 1 |
特殊方法/属性 |
信息 2 |
||||
---|---|---|---|---|---|---|
O |
T |
D |
I |
|||
<R> |
const char * |
__name__ |
X |
X |
||
X |
X |
X |
||||
X |
X |
|||||
X |
X |
X |
||||
X |
X |
|||||
__getattribute__, __getattr__ |
G |
|||||
__setattr__, __delattr__ |
G |
|||||
% |
||||||
__repr__ |
X |
X |
X |
|||
% |
||||||
% |
||||||
% |
||||||
__hash__ |
X |
G |
||||
__call__ |
X |
X |
||||
__str__ |
X |
X |
||||
__getattribute__, __getattr__ |
X |
X |
G |
|||
__setattr__, __delattr__ |
X |
X |
G |
|||
% |
||||||
unsigned long |
X |
X |
? |
|||
const char * |
__doc__ |
X |
X |
|||
X |
G |
|||||
X |
G |
|||||
__lt__, __le__, __eq__, __ne__, __gt__, __ge__ |
X |
G |
||||
X |
? |
|||||
__iter__ |
X |
|||||
__next__ |
X |
|||||
|
X |
X |
||||
|
X |
|||||
|
X |
X |
||||
__base__ |
X |
|||||
|
__dict__ |
? |
||||
__get__ |
X |
|||||
__set__, __delete__ |
X |
|||||
X |
? |
|||||
__init__ |
X |
X |
X |
|||
X |
? |
? |
||||
__new__ |
X |
X |
? |
? |
||
X |
X |
? |
? |
|||
X |
X |
|||||
< |
|
__bases__ |
~ |
|||
< |
|
__mro__ |
~ |
|||
[ |
|
|||||
|
__subclasses__ |
|||||
|
||||||
( |
||||||
unsigned int |
||||||
__del__ |
X |
|||||
- 1
():括号中的插槽名称表示(实际上)已弃用。
<>: 尖括号内的名称在初始时应设为
NULL
并被视为是只读的。[]: 方括号内的名称仅供内部使用。
<R> (作为前缀) 表示字段是必需的 (不能是
NULL
)。- 2
列:
"O":
PyBaseObject_Type
必须设置"T":
PyType_Type
必须设置"D": 默认设置(如果方法槽被设置为NULL)
X - PyType_Ready sets this value if it is NULL ~ - PyType_Ready always sets this value (it should be NULL) ? - PyType_Ready may set this value depending on other slots Also see the inheritance column ("I").
"I": 继承
X - type slot is inherited via *PyType_Ready* if defined with a *NULL* value % - the slots of the sub-struct are inherited individually G - inherited, but only in combination with other slots; see the slot's description ? - it's complicated; see the slot's description
注意,有些方法槽是通过普通属性查找链有效继承的。
子方法槽(方法域)¶
方法槽 |
特殊方法 |
|
---|---|---|
__await__ |
||
__aiter__ |
||
__anext__ |
||
__add__ __radd__ |
||
__iadd__ |
||
__sub__ __rsub__ |
||
__isub__ |
||
__mul__ __rmul__ |
||
__imul__ |
||
__mod__ __rmod__ |
||
__imod__ |
||
__divmod__ __rdivmod__ |
||
__pow__ __rpow__ |
||
__ipow__ |
||
__neg__ |
||
__pos__ |
||
__abs__ |
||
__bool__ |
||
__invert__ |
||
__lshift__ __rlshift__ |
||
__ilshift__ |
||
__rshift__ __rrshift__ |
||
__irshift__ |
||
__and__ __rand__ |
||
__iand__ |
||
__xor__ __rxor__ |
||
__ixor__ |
||
__or__ __ror__ |
||
__ior__ |
||
__int__ |
||
void * |
||
__float__ |
||
__floordiv__ |
||
__ifloordiv__ |
||
__truediv__ |
||
__itruediv__ |
||
__index__ |
||
__matmul__ __rmatmul__ |
||
__imatmul__ |
||
__len__ |
||
__getitem__ |
||
__setitem__, __delitem__ |
||
__len__ |
||
__add__ |
||
__mul__ |
||
__getitem__ |
||
__setitem__ __delitem__ |
||
__contains__ |
||
__iadd__ |
||
__imul__ |
||
槽位 typedef¶
typedef |
参数类型 |
返回类型 |
---|---|---|
|
||
void * |
void |
|
void * |
void |
|
int |
||
|
||
int |
||
|
|
|
PyObject *const char *
|
|
|
int |
||
|
||
int |
||
|
||
int |
||
|
Py_hash_t |
|
|
||
|
|
|
|
|
|
|
||
int |
||
void |
||
void * |
int |
|
PyObject * |
|
|
|
||
|
||
|
||
int |
||
int |
||
int |
请参阅 槽位类型 typedef 里有更多详细信息。
PyTypeObject 定义¶
PyTypeObject
的结构定义可以在 Include/object.h
中找到。 为了方便参考,此处复述了其中的定义:
typedef struct _typeobject {
PyObject_VAR_HEAD
const char *tp_name; /* For printing, in format "<module>.<name>" */
Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
/* Methods to implement standard operations */
destructor tp_dealloc;
Py_ssize_t tp_vectorcall_offset;
getattrfunc tp_getattr;
setattrfunc tp_setattr;
PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
or tp_reserved (Python 3) */
reprfunc tp_repr;
/* Method suites for standard classes */
PyNumberMethods *tp_as_number;
PySequenceMethods *tp_as_sequence;
PyMappingMethods *tp_as_mapping;
/* More standard operations (here for binary compatibility) */
hashfunc tp_hash;
ternaryfunc tp_call;
reprfunc tp_str;
getattrofunc tp_getattro;
setattrofunc tp_setattro;
/* Functions to access object as input/output buffer */
PyBufferProcs *tp_as_buffer;
/* Flags to define presence of optional/expanded features */
unsigned long tp_flags;
const char *tp_doc; /* Documentation string */
/* Assigned meaning in release 2.0 */
/* call function for all accessible objects */
traverseproc tp_traverse;
/* delete references to contained objects */
inquiry tp_clear;
/* Assigned meaning in release 2.1 */
/* rich comparisons */
richcmpfunc tp_richcompare;
/* weak reference enabler */
Py_ssize_t tp_weaklistoffset;
/* Iterators */
getiterfunc tp_iter;
iternextfunc tp_iternext;
/* Attribute descriptor and subclassing stuff */
struct PyMethodDef *tp_methods;
struct PyMemberDef *tp_members;
struct PyGetSetDef *tp_getset;
// Strong reference on a heap type, borrowed reference on a static type
struct _typeobject *tp_base;
PyObject *tp_dict;
descrgetfunc tp_descr_get;
descrsetfunc tp_descr_set;
Py_ssize_t tp_dictoffset;
initproc tp_init;
allocfunc tp_alloc;
newfunc tp_new;
freefunc tp_free; /* Low-level free-memory routine */
inquiry tp_is_gc; /* For PyObject_IS_GC */
PyObject *tp_bases;
PyObject *tp_mro; /* method resolution order */
PyObject *tp_cache;
PyObject *tp_subclasses;
PyObject *tp_weaklist;
destructor tp_del;
/* Type attribute cache version tag. Added in version 2.6 */
unsigned int tp_version_tag;
destructor tp_finalize;
vectorcallfunc tp_vectorcall;
} PyTypeObject;
PyObject 槽位¶
类型对象结构扩展了 PyVarObject
结构。 ob_size
字段用于动态类型 (由 type_new()
创建,通常通过 类 语句来调用)。 注意 PyType_Type
(元类型) 会初始化 tp_itemsize
,这意味着它的实例 (即类型对象) 必须 具有 ob_size
字段。
-
Py_ssize_t
PyObject
.
ob_refcnt
¶ - Part of the Stable ABI.
这是类型对象的引用计数,由
PyObject_HEAD_INIT
宏初始化为1
。 请注意对于 静态分配的类型对象,类型的实例 (对象的ob_type
指回该类型) 不会 被加入引用计数。 但对于 动态分配的类型对象,实例 确实 会被算作引用。继承:
子类型不继承此字段。
-
PyTypeObject *
PyObject
.
ob_type
¶ - Part of the Stable ABI.
这是类型的类型,换句话说就是元类型,它由宏
PyObject_HEAD_INIT
的参数来做初始化,它的值一般情况下是&PyType_Type
。可是为了使动态可载入扩展模块至少在Windows上可用,编译器会报错这是一个不可用的初始化。因此按照惯例传递NULL
给宏PyObject_HEAD_INIT
并且在模块的初始化函数开始时候其他任何操作之前初始化这个字段。典型做法是这样的:Foo_Type.ob_type = &PyType_Type;
This should be done before any instances of the type are created.
PyType_Ready()
checks ifob_type
isNULL
, and if so, initializes it to theob_type
field of the base class.PyType_Ready()
will not change this field if it is non-zero.继承:
此字段会被子类型继承。
-
PyObject *
PyObject
.
_ob_next
¶ -
PyObject *
PyObject
.
_ob_prev
¶ 这些字段仅在定义了宏
Py_TRACE_REFS
时存在(参阅configure --with-trace-refs option
)。由
PyObject_HEAD_INIT
宏负责将它们初始化为NULL
。对于 静态分配的对象,这两个字段始终为NULL
。对于 动态分配的对象,这两个字段用于将对象链接到堆上所有活动对象的双向链表中。它们可用于各种调试目的。目前唯一的用途是
sys.getobjects()
函数,在设置了环境变量PYTHONDUMPREFS
时,打印运行结束时仍然活跃的对象。继承:
这些字段不会被子类型继承。
PyVarObject 槽位¶
-
Py_ssize_t
PyVarObject
.
ob_size
¶ - Part of the Stable ABI.
对于 静态分配的内存对象,它应该初始化为 0。对于 动态分配的类型对象,该字段具有特殊的内部含义。
继承:
子类型不继承此字段。
PyTypeObject 槽¶
Each slot has a section describing inheritance. If PyType_Ready()
may set a value when the field is set to NULL
then there will also be
a "Default" section. (Note that many fields set on PyBaseObject_Type
and PyType_Type
effectively act as defaults.)
-
const char *
PyTypeObject
.
tp_name
¶ Pointer to a NUL-terminated string containing the name of the type. For types that are accessible as module globals, the string should be the full module name, followed by a dot, followed by the type name; for built-in types, it should be just the type name. If the module is a submodule of a package, the full package name is part of the full module name. For example, a type named
T
defined in moduleM
in subpackageQ
in packageP
should have thetp_name
initializer"P.Q.M.T"
.对于 动态分配的类型对象,这应为类型名称,而模块名称将作为
'__module__'
键的值显式地保存在类型字典中。对于 静态分配的类型对象,tp_name 字段应当包含一个点号。 最后一个点号之前的所有内容都可作为
__module__
属性访问,而最后一个点号之后的所有内容都可作为__name__
属性访问。如果不存在点号,则整个
tp_name
字段将作为__name__
属性访问,而__module__
属性则将是未定义的(除非在字典中显式地设置,如上文所述)。 这意味着你的类型将无法执行 pickle。 此外,用 pydoc 创建的模块文档中也不会列出该类型。该字段不可为
NULL
。 它是PyTypeObject()
中唯一的必填字段(除了潜在的tp_itemsize
以外)。继承:
子类型不继承此字段。
-
Py_ssize_t
PyTypeObject
.
tp_basicsize
¶ -
Py_ssize_t
PyTypeObject
.
tp_itemsize
¶ 通过这些字段可以计算出该类型实例以字节为单位的大小。
存在两种类型:具有固定长度实例的类型其
tp_itemsize
字段为零;具有可变长度实例的类型其tp_itemsize
字段不为零。 对于具有固定长度实例的类型,所有实例的大小都相同,具体大小由tp_basicsize
给出。For a type with variable-length instances, the instances must have an
ob_size
field, and the instance size istp_basicsize
plus N timestp_itemsize
, where N is the "length" of the object. The value of N is typically stored in the instance'sob_size
field. There are exceptions: for example, ints use a negativeob_size
to indicate a negative number, and N isabs(ob_size)
there. Also, the presence of anob_size
field in the instance layout doesn't mean that the instance structure is variable-length (for example, the structure for the list type has fixed-length instances, yet those instances have a meaningfulob_size
field).The basic size includes the fields in the instance declared by the macro
PyObject_HEAD
orPyObject_VAR_HEAD
(whichever is used to declare the instance struct) and this in turn includes the_ob_prev
and_ob_next
fields if they are present. This means that the only correct way to get an initializer for thetp_basicsize
is to use thesizeof
operator on the struct used to declare the instance layout. The basic size does not include the GC header size.关于对齐的说明:如果变量条目需要特定的对齐,则应通过
tp_basicsize
的值来处理。 例如:假设某个类型实现了一个double
数组。tp_itemsize
就是sizeof(double)
。 程序员有责任确保tp_basicsize
是sizeof(double)
的倍数(假设这是double
的对齐要求)。对于任何具有可变长度实例的类型,该字段不可为
NULL
。继承:
这些字段将由子类分别继承。 如果基本类型有一个非零的
tp_itemsize
,那么在子类型中将tp_itemsize
设置为不同的非零值通常是不安全的(不过这取决于该基本类型的具体实现)。
-
destructor
PyTypeObject
.
tp_dealloc
¶ 指向实例析构函数的指针。除非保证类型的实例永远不会被释放(就像单例对象
None
和Ellipsis
那样),否则必须定义这个函数。函数声明如下:void tp_dealloc(PyObject *self);
The destructor function is called by the
Py_DECREF()
andPy_XDECREF()
macros when the new reference count is zero. At this point, the instance is still in existence, but there are no references to it. The destructor function should free all references which the instance owns, free all memory buffers owned by the instance (using the freeing function corresponding to the allocation function used to allocate the buffer), and call the type'stp_free
function. If the type is not subtypable (doesn't have thePy_TPFLAGS_BASETYPE
flag bit set), it is permissible to call the object deallocator directly instead of viatp_free
. The object deallocator should be the one used to allocate the instance; this is normallyPyObject_Del()
if the instance was allocated usingPyObject_New()
orPyObject_VarNew()
, orPyObject_GC_Del()
if the instance was allocated usingPyObject_GC_New()
orPyObject_GC_NewVar()
.If the type supports garbage collection (has the
Py_TPFLAGS_HAVE_GC
flag bit set), the destructor should callPyObject_GC_UnTrack()
before clearing any member fields.static void foo_dealloc(foo_object *self) { PyObject_GC_UnTrack(self); Py_CLEAR(self->ref); Py_TYPE(self)->tp_free((PyObject *)self); }
Finally, if the type is heap allocated (
Py_TPFLAGS_HEAPTYPE
), the deallocator should release the owned reference to its type object (viaPy_DECREF()
) after calling the type deallocator. In order to avoid dangling pointers, the recommended way to achieve this is:static void foo_dealloc(foo_object *self) { PyTypeObject *tp = Py_TYPE(self); // free references and buffers here tp->tp_free(self); Py_DECREF(tp); }
继承:
此字段会被子类型继承。
-
Py_ssize_t
PyTypeObject
.
tp_vectorcall_offset
¶ 一个相对使用 vectorcall 协议 实现调用对象的实例级函数的可选的偏移量,这是一种比简单的
tp_call
更有效的替代选择。This field is only used if the flag
Py_TPFLAGS_HAVE_VECTORCALL
is set. If so, this must be a positive integer containing the offset in the instance of avectorcallfunc
pointer.The vectorcallfunc pointer may be
NULL
, in which case the instance behaves as ifPy_TPFLAGS_HAVE_VECTORCALL
was not set: calling the instance falls back totp_call
.任何设置了
Py_TPFLAGS_HAVE_VECTORCALL
的类也必须设置tp_call
并确保其行为与 vectorcallfunc 函数一致。 这可以通过将 tp_call 设为PyVectorcall_Call()
来实现。警告
It is not recommended for heap types to implement the vectorcall protocol. When a user sets
__call__
in Python code, only tp_call is updated, likely making it inconsistent with the vectorcall function.在 3.8 版更改: 在 3.8 版之前,这个槽位被命名为
tp_print
。 在 Python 2.x 中,它被用于打印到文件。 在 Python 3.0 至 3.7 中,它没有被使用。继承:
This field is always inherited. However, the
Py_TPFLAGS_HAVE_VECTORCALL
flag is not always inherited. If it's not, then the subclass won't use vectorcall, except whenPyVectorcall_Call()
is explicitly called. This is in particular the case for heap types (including subclasses defined in Python).
-
getattrfunc
PyTypeObject
.
tp_getattr
¶ 一个指向获取属性字符串函数的可选指针。
该字段已弃用。当它被定义时,应该和
tp_getattro
指向同一个函数,但接受一个C字符串参数表示属性名,而不是Python字符串对象。继承:
分组:
tp_getattr
,tp_getattro
该字段会被子类和
tp_getattro
所继承:当子类型的tp_getattr
和tp_getattro
均为NULL
时该子类型将从它的基类型同时继承tp_getattr
和tp_getattro
。
-
setattrfunc
PyTypeObject
.
tp_setattr
¶ 一个指向函数以便设置和删除属性的可选指针。
该字段已弃用。当它被定义时,应该和
tp_setattro
指向同一个函数,但接受一个C字符串参数表示属性名,而不是Python字符串对象。继承:
分组:
tp_setattr
,tp_setattro
该字段会被子类型和
tp_setattro
所继承:当子类型的tp_setattr
和tp_setattro
均为NULL
时该子类型将同时从它的基类型继承tp_setattr
和tp_setattro
。
-
PyAsyncMethods *
PyTypeObject
.
tp_as_async
¶ 指向一个包含仅与在 C 层级上实现 awaitable 和 asynchronous iterator 协议的对象相关联的字段的附加结构体。 请参阅 异步对象结构体 了解详情。
3.5 新版功能: 在之前被称为
tp_compare
和tp_reserved
。继承:
tp_as_async
字段不会被继承,但所包含的字段会被单独继承。
-
reprfunc
PyTypeObject
.
tp_repr
¶ 一个实现了内置函数
repr()
的函数的可选指针。该签名与
PyObject_Repr()
的相同:PyObject *tp_repr(PyObject *self);
该函数必须返回一个字符串或 Unicode 对象。 在理想情况下,该函数应当返回一个字符串,当将其传给
eval()
时,只要有合适的环境,就会返回一个具有相同值的对象。 如果这不可行,则它应当返回一个以'<'
开头并以'>'
结尾的可被用来推断出对象的类型和值的字符串。继承:
此字段会被子类型继承。
默认:
如果未设置该字段,则返回
<%s object at %p>
形式的字符串,其中%s
将替换为类型名称,%p
将替换为对象的内存地址。
-
PyNumberMethods *
PyTypeObject
.
tp_as_number
¶ 指向一个附加结构体的指针,其中包含只与执行数字协议的对象相关的字段。 这些字段的文档参见 数字对象结构体。
继承:
tp_as_number
字段不会被继承,但所包含的字段会被单独继承。
-
PySequenceMethods *
PyTypeObject
.
tp_as_sequence
¶ 指向一个附加结构体的指针,其中包含只与执行序列协议的对象相关的字段。 这些字段的文档见 序列对象结构体。
继承:
tp_as_sequence
字段不会被继承,但所包含的字段会被单独继承。
-
PyMappingMethods *
PyTypeObject
.
tp_as_mapping
¶ 指向一个附加结构体的指针,其中包含只与执行映射协议的对象相关的字段。 这些字段的文档见 映射对象结构体。
继承:
tp_as_mapping
字段不会继承,但所包含的字段会被单独继承。
-
hashfunc
PyTypeObject
.
tp_hash
¶ 一个指向实现了内置函数
hash()
的函数的可选指针。其签名与
PyObject_Hash()
的相同:Py_hash_t tp_hash(PyObject *);
-1
不应作为正常返回值被返回;当计算哈希值过程中发生错误时,函数应设置一个异常并返回-1
。When this field is not set (and
tp_richcompare
is not set), an attempt to take the hash of the object raisesTypeError
. This is the same as setting it toPyObject_HashNotImplemented()
.此字段可被显式设为
PyObject_HashNotImplemented()
以阻止从父类型继承哈希方法。在 Python 层面这被解释为__hash__ = None
的等价物,使得isinstance(o, collections.Hashable)
正确返回False
.。请注意反过来也是如此:在 Python 层面设置一个类的__hash__ = None
会使得tp_hash
槽位被设置为PyObject_HashNotImplemented()
。继承:
分组:
tp_hash
,tp_richcompare
该字段会被子类型同
tp_richcompare
一起继承:当子类型的tp_richcompare
和tp_hash
均为NULL
时子类型将同时继承tp_richcompare
和tp_hash
。
-
ternaryfunc
PyTypeObject
.
tp_call
¶ 一个可选的实现对象调用的指向函数的指针。 如果对象不是可调用对象则该值应为
NULL
。 其签名与PyObject_Call()
的相同:PyObject *tp_call(PyObject *self, PyObject *args, PyObject *kwargs);
继承:
此字段会被子类型继承。
-
reprfunc
PyTypeObject
.
tp_str
¶ 一个可选的实现内置
str()
操作的函数的指针。 (请注意str
现在是一个类型,str()
是调用该类型的构造器。 该构造器将调用PyObject_Str()
执行实际操作,而PyObject_Str()
将调用该处理器。)其签名与
PyObject_Str()
的相同:PyObject *tp_str(PyObject *self);
该函数必须返回一个字符串或 Unicode 对象。 它应当是一个“友好”的对象字符串表示形式,因为这就是要在
print()
函数中与其他内容一起使用的表示形式。继承:
此字段会被子类型继承。
默认:
当未设置该字段时,将调用
PyObject_Repr()
来返回一个字符串表示形式。
-
getattrofunc
PyTypeObject
.
tp_getattro
¶ 一个指向获取属性字符串函数的可选指针。
其签名与
PyObject_GetAttr()
的相同:PyObject *tp_getattro(PyObject *self, PyObject *attr);
可以方便地将该字段设为
PyObject_GenericGetAttr()
,它实现了查找对象属性的通常方式。继承:
分组:
tp_getattr
,tp_getattro
该字段会被子类同
tp_getattr
一起继承:当子类型的tp_getattr
和tp_getattro
均为NULL
时子类型将同时继承tp_getattr
和tp_getattro
。默认:
PyBaseObject_Type
使用PyObject_GenericGetAttr()
。
-
setattrofunc
PyTypeObject
.
tp_setattro
¶ 一个指向函数以便设置和删除属性的可选指针。
其签名与
PyObject_SetAttr()
的相同:int tp_setattro(PyObject *self, PyObject *attr, PyObject *value);
此外,还必须支持将 value 设为
NULL
来删除属性。 通常可以方便地将该字段设为PyObject_GenericSetAttr()
,它实现了设备对象属性的通常方式。继承:
分组:
tp_setattr
,tp_setattro
该字段会被子类型同
tp_setattr
一起继承:当子类型的tp_setattr
和tp_setattro
均为NULL
时子类型将同时继承tp_setattr
和tp_setattro
。默认:
PyBaseObject_Type
使用PyObject_GenericSetAttr()
.
-
PyBufferProcs *
PyTypeObject
.
tp_as_buffer
¶ 指向一个包含只与实现缓冲区接口的对象相关的字段的附加结构体的指针。 这些字段的文档参见 缓冲区对象结构体。
继承:
tp_as_buffer
字段不会被继承,但所包含的字段会被单独继承。
-
unsigned long
PyTypeObject
.
tp_flags
¶ 该字段是针对多个旗标的位掩码。 某些旗标指明用于特定场景的变化语义;另一些旗标则用于指明类型对象(或通过
tp_as_number
,tp_as_sequence
,tp_as_mapping
和tp_as_buffer
引用的扩展结构体)中的特定字段,它们在历史上并不总是有效;如果这样的旗标位是清晰的,则它所保护的类型字段必须不可被访问并且必须被视为具有零或NULL
值。继承:
Inheritance of this field is complicated. Most flag bits are inherited individually, i.e. if the base type has a flag bit set, the subtype inherits this flag bit. The flag bits that pertain to extension structures are strictly inherited if the extension structure is inherited, i.e. the base type's value of the flag bit is copied into the subtype together with a pointer to the extension structure. The
Py_TPFLAGS_HAVE_GC
flag bit is inherited together with thetp_traverse
andtp_clear
fields, i.e. if thePy_TPFLAGS_HAVE_GC
flag bit is clear in the subtype and thetp_traverse
andtp_clear
fields in the subtype exist and haveNULL
values.默认:
PyBaseObject_Type
usesPy_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
.位掩码:
目前定义了以下位掩码;可以使用
|
运算符对它们进行 OR 运算以形成tp_flags
字段的值。 宏PyType_HasFeature()
接受一个类型和一个旗标值 tp 和 f,并检查tp->tp_flags & f
是否为非零值。-
Py_TPFLAGS_HEAPTYPE
¶ This bit is set when the type object itself is allocated on the heap, for example, types created dynamically using
PyType_FromSpec()
. In this case, theob_type
field of its instances is considered a reference to the type, and the type object is INCREF'ed when a new instance is created, and DECREF'ed when an instance is destroyed (this does not apply to instances of subtypes; only the type referenced by the instance's ob_type gets INCREF'ed or DECREF'ed).继承:
???
-
Py_TPFLAGS_BASETYPE
¶ 当此类型可被用作另一个类型的基类型时该比特位将被设置。 如果该比特位被清除,则此类型将无法被子类型化(类似于 Java 中的 "final" 类)。
继承:
???
-
Py_TPFLAGS_READY
¶ 当此类型对象通过
PyType_Ready()
被完全实例化时该比特位将被设置。继承:
???
-
Py_TPFLAGS_READYING
¶ 当
PyType_Ready()
处在初始化此类型对象过程中时该比特位将被设置。继承:
???
-
Py_TPFLAGS_HAVE_GC
¶ This bit is set when the object supports garbage collection. If this bit is set, instances must be created using
PyObject_GC_New()
and destroyed usingPyObject_GC_Del()
. More information in section 使对象类型支持循环垃圾回收. This bit also implies that the GC-related fieldstp_traverse
andtp_clear
are present in the type object.继承:
Group:
Py_TPFLAGS_HAVE_GC
,tp_traverse
,tp_clear
The
Py_TPFLAGS_HAVE_GC
flag bit is inherited together with thetp_traverse
andtp_clear
fields, i.e. if thePy_TPFLAGS_HAVE_GC
flag bit is clear in the subtype and thetp_traverse
andtp_clear
fields in the subtype exist and haveNULL
values.
-
Py_TPFLAGS_DEFAULT
¶ This is a bitmask of all the bits that pertain to the existence of certain fields in the type object and its extension structures. Currently, it includes the following bits:
Py_TPFLAGS_HAVE_STACKLESS_EXTENSION
.继承:
???
-
Py_TPFLAGS_METHOD_DESCRIPTOR
¶ 这个位指明对象的行为类似于未绑定方法。
如果为
type(meth)
设置了该旗标,那么:meth.__get__(obj, cls)(*args, **kwds)
(其中obj
不为 None) 必须等价于meth(obj, *args, **kwds)
。meth.__get__(None, cls)(*args, **kwds)
必须等价于meth(*args, **kwds)
。
此旗标为
obj.meth()
这样的典型方法调用启用优化:它将避免为obj.meth
创建临时的“绑定方法”对象。3.8 新版功能.
继承:
This flag is never inherited by heap types. For extension types, it is inherited whenever
tp_descr_get
is inherited.
-
Py_TPFLAGS_LONG_SUBCLASS
¶
-
Py_TPFLAGS_LIST_SUBCLASS
¶
-
Py_TPFLAGS_TUPLE_SUBCLASS
¶
-
Py_TPFLAGS_BYTES_SUBCLASS
¶
-
Py_TPFLAGS_UNICODE_SUBCLASS
¶
-
Py_TPFLAGS_DICT_SUBCLASS
¶
-
Py_TPFLAGS_BASE_EXC_SUBCLASS
¶
-
Py_TPFLAGS_TYPE_SUBCLASS
¶ 这些旗标被
PyLong_Check()
等函数用来快速确定一个类型是否为内置类型的子类;这样的专用检测比泛用检测如PyObject_IsInstance()
要更快速。 继承自内置类型的自定义类型应当正确地设置其tp_flags
,否则与这样的类型进行交互的代码将因所使用的检测种类而出现不同的行为。
-
Py_TPFLAGS_HAVE_FINALIZE
¶ 当类型结构体中存在
tp_finalize
槽位时会设置这个比特位。3.4 新版功能.
3.8 版后已移除: 此旗标已不再是必要的,因为解释器会假定类型结构体中总是存在
tp_finalize
槽位。
-
Py_TPFLAGS_HAVE_VECTORCALL
¶ 当类实现了 vectorcall 协议 时会设置这个比特位。 请参阅
tp_vectorcall_offset
了解详情。继承:
This bit is inherited for static subtypes if
tp_call
is also inherited. Heap types do not inheritPy_TPFLAGS_HAVE_VECTORCALL
.3.9 新版功能.
-
Py_TPFLAGS_IMMUTABLETYPE
¶ 不可变的类型对象会设置这个比特位:类型属性无法被设置或删除。
PyType_Ready()
会自动对 静态类型 应用这个旗标。继承:
这个旗标不会被继承。
3.10 新版功能.
-
Py_TPFLAGS_DISALLOW_INSTANTIATION
¶ 不允许创建此类型的实例:将
tp_new
设为 NULL 并且不会在类型字符中创建__new__
键。这个旗标必须在创建该类型之前设置,而不是在之后。 例如,它必须在该类型调用
PyType_Ready()
之前被设置。如果
tp_base
为 NULL 或者&PyBaseObject_Type
和tp_new
为 NULL 则该旗标会在 静态类型 上自动设置。继承:
这个旗标不会被继承。 但是,子类将不能被实例化,除非它们提供了不为 NULL 的
tp_new
(这只能通过 C API 实现)。注解
要禁止直接实例化一个类但允许实例化其子类 (例如对于 abstract base class),请勿使用此旗标。 替代的做法是,让
tp_new
只对子类可用。3.10 新版功能.
-
Py_TPFLAGS_MAPPING
¶ 这个比特位指明该类的实例可以在被用作
match
代码块的目标时匹配映射模式。 它会在注册或子类化collections.abc.Mapping
时自动设置,并在注册collections.abc.Sequence
时取消设置。注解
Py_TPFLAGS_MAPPING
andPy_TPFLAGS_SEQUENCE
are mutually exclusive; it is an error to enable both flags simultaneously.继承:
This flag is inherited by types that do not already set
Py_TPFLAGS_SEQUENCE
.参见
PEP 634 —— 结构化模式匹配:规范
3.10 新版功能.
-
Py_TPFLAGS_SEQUENCE
¶ 这个比特位指明该类的实例可以在被用作
match
代码块的目标时匹配序列模式。 它会在注册或子类化collections.abc.Sequence
时自动设置,并在注册collections.abc.Mapping
时取消设置。注解
Py_TPFLAGS_MAPPING
andPy_TPFLAGS_SEQUENCE
are mutually exclusive; it is an error to enable both flags simultaneously.继承:
This flag is inherited by types that do not already set
Py_TPFLAGS_MAPPING
.参见
PEP 634 —— 结构化模式匹配:规范
3.10 新版功能.
-
-
const char *
PyTypeObject
.
tp_doc
¶ 一个可选的指向给出该类型对象的文档字符串的以 NUL 结束的 C 字符串的指针。 该指针被暴露为类型和类型实例上的
__doc__
属性。继承:
这个字段 不会 被子类型继承。
-
traverseproc
PyTypeObject
.
tp_traverse
¶ An optional pointer to a traversal function for the garbage collector. This is only used if the
Py_TPFLAGS_HAVE_GC
flag bit is set. The signature is:int tp_traverse(PyObject *self, visitproc visit, void *arg);
有关 Python 垃圾回收方案的更多信息可在 使对象类型支持循环垃圾回收 一节中查看。
The
tp_traverse
pointer is used by the garbage collector to detect reference cycles. A typical implementation of atp_traverse
function simply callsPy_VISIT()
on each of the instance's members that are Python objects that the instance owns. For example, this is functionlocal_traverse()
from the_thread
extension module:static int local_traverse(localobject *self, visitproc visit, void *arg) { Py_VISIT(self->args); Py_VISIT(self->kw); Py_VISIT(self->dict); return 0; }
请注意
Py_VISIT()
仅能在可以参加循环引用的成员上被调用。 虽然还存在一个self->key
成员,但它只能为NULL
或 Python 字符串因而不能成为循环引用的一部分。在另一方面,即使你知道某个成员永远不会成为循环引用的一部分,作为调试的辅助你仍然可能想要访问它因此
gc
模块的get_referents()
函数将会包括它。警告
当实现
tp_traverse
时,只有实例所 拥有 的成员 (就是有指向它们的 强引用) 才必须被访问。 举例来说,如果一个对象通过tp_weaklist
槽位支持弱引用,那么支持链表 (tp_weaklist 所指向的对象) 的指针就 不能 被访问因为实例并不直接拥有指向自身的弱引用 (弱引用列表被用来支持弱引用机制,但实例没有指向其中的元素的强引用,因为即使实例还存在它们也允许被删除)。请注意
Py_VISIT()
要求传给local_traverse()
的 visit 和 arg 形参具有指定的名称;不要随意命名它们。堆分配类型 的实例会持有一个指向其类型的引用。 因此它们的遍历函数必须要么访问
Py_TYPE(self)
,要么通过调用其他堆分配类型(例如一个堆分配超类)的tp_traverse
将此任务委托出去。 如果没有这样做,类型对象可能不会被垃圾回收。在 3.9 版更改: 堆分配类型应当访问
tp_traverse
中的Py_TYPE(self)
。 在较早的 Python 版本中,由于 bug 40217,这样做可能会导致在超类中发生崩溃。继承:
Group:
Py_TPFLAGS_HAVE_GC
,tp_traverse
,tp_clear
This field is inherited by subtypes together with
tp_clear
and thePy_TPFLAGS_HAVE_GC
flag bit: the flag bit,tp_traverse
, andtp_clear
are all inherited from the base type if they are all zero in the subtype.
-
inquiry
PyTypeObject
.
tp_clear
¶ An optional pointer to a clear function for the garbage collector. This is only used if the
Py_TPFLAGS_HAVE_GC
flag bit is set. The signature is:int tp_clear(PyObject *);
tp_clear
成员函数被用来打破垃圾回收器在循环垃圾中检测到的循环引用。 总的来说,系统中的所有tp_clear
函数必须合到一起以打破所有引用循环。 这是个微妙的问题,并且如有任何疑问都需要提供tp_clear
函数。 例如,元组类型不会实现tp_clear
函数,因为有可能证明完全用元组是不会构成循环引用的。 因此其他类型的tp_clear
函数必须足以打破任何包含元组的循环。 这不是立即能明确的,并且很少会有避免实现tp_clear
的适当理由。tp_clear
的实现应当丢弃实例指向其成员的可能为 Python 对象的引用,并将指向这些成员的指针设为NULL
,如下面的例子所示:static int local_clear(localobject *self) { Py_CLEAR(self->key); Py_CLEAR(self->args); Py_CLEAR(self->kw); Py_CLEAR(self->dict); return 0; }
应当使用
Py_CLEAR()
宏,因为清除引用是很微妙的:指向被包含对象的引用必须在指向被包含对象的指针被设为NULL
之后才能被释放 (通过Py_DECREF()
)。 这是因为释放引用可能会导致被包含的对象变成垃圾,触发一连串的回收活动,其中可能包括发起调用任意 Python 代码 (由于关联到被包含对象的终结器或弱引用回调)。 如果这样的代码有可能再次引用 self,那么这时指向被包含对象的指针为NULL
就是非常重要的,这样 self 就知道被包含对象不可再被使用。Py_CLEAR()
宏将以安全的顺序执行此操作。请注意
tp_clear
并非 总是 在实例被取消分配之前被调用。 例如,当引用计数足以确定对象不再被使用时,就不会涉及循环垃圾回收器而是直接调用tp_dealloc
。因为
tp_clear
函数的目的是打破循环引用,所以不需要清除所包含的对象如 Python 字符串或 Python 整数,它们无法参与循环引用。 另一方面,清除所包含的全部 Python 对象,并编写类型的tp_dealloc
函数来发起调用tp_clear
也很方便。有关 Python 垃圾回收方案的更多信息可在 使对象类型支持循环垃圾回收 一节中查看。
继承:
Group:
Py_TPFLAGS_HAVE_GC
,tp_traverse
,tp_clear
This field is inherited by subtypes together with
tp_traverse
and thePy_TPFLAGS_HAVE_GC
flag bit: the flag bit,tp_traverse
, andtp_clear
are all inherited from the base type if they are all zero in the subtype.
-
richcmpfunc
PyTypeObject
.
tp_richcompare
¶ 一个可选的指向富比较函数的指针,函数的签名为:
PyObject *tp_richcompare(PyObject *self, PyObject *other, int op);
第一个形参将保证为
PyTypeObject
所定义的类型的实例。该函数应当返回比较的结果 (通常为
Py_True
或Py_False
)。 如果未定义比较运算,它必须返回Py_NotImplemented
,如果发生了其他错误则它必须返回NULL
并设置一个异常条件。以下常量被定义用作
tp_richcompare
和PyObject_RichCompare()
的第三个参数:常量
对照
Py_LT
<
Py_LE
<=
Py_EQ
==
Py_NE
!=
Py_GT
>
Py_GE
>=
定义以下宏是为了简化编写丰富的比较函数:
-
Py_RETURN_RICHCOMPARE
(VAL_A, VAL_B, op)¶ 从该函数返回
Py_True
或Py_False
,这取决于比较的结果。 VAL_A 和 VAL_B 必须是可通过 C 比较运算符进行排序的(例如,它们可以为 C 整数或浮点数)。 第三个参数指明所请求的运算,与PyObject_RichCompare()
的参数一样。返回值是一个新的 strong reference。
发生错误时,将设置异常并从该函数返回
NULL
。3.7 新版功能.
继承:
分组:
tp_hash
,tp_richcompare
该字段会被子类型同
tp_hash
一起继承:当子类型的tp_richcompare
和tp_hash
均为NULL
时子类型将同时继承tp_richcompare
和tp_hash
。默认:
PyBaseObject_Type
provides atp_richcompare
implementation, which may be inherited. However, if onlytp_hash
is defined, not even the inherited function is used and instances of the type will not be able to participate in any comparisons.-
-
Py_ssize_t
PyTypeObject
.
tp_weaklistoffset
¶ 如果此类型的实例是可被弱引用的,则该字段将大于零并包含在弱引用列表头的实例结构体中的偏移量(忽略 GC 头,如果存在的话);该偏移量将被
PyObject_ClearWeakRefs()
和PyWeakref_*
函数使用。 实例结构体需要包括一个PyObject*
类型的字段并初始化为NULL
。不要将该字段与
tp_weaklist
混淆;后者是指向类型对象本身的弱引用的列表头。继承:
该字段会被子类型继承,但注意参阅下面列出的规则。 子类型可以覆盖此偏移量;这意味着子类型将使用不同于基类型的弱引用列表。 由于列表头总是通过
tp_weaklistoffset
找到的,所以这应该不成问题。When a type defined by a class statement has no
__slots__
declaration, and none of its base types are weakly referenceable, the type is made weakly referenceable by adding a weak reference list head slot to the instance layout and setting thetp_weaklistoffset
of that slot's offset.When a type's
__slots__
declaration contains a slot named__weakref__
, that slot becomes the weak reference list head for instances of the type, and the slot's offset is stored in the type'stp_weaklistoffset
.When a type's
__slots__
declaration does not contain a slot named__weakref__
, the type inherits itstp_weaklistoffset
from its base type.
-
getiterfunc
PyTypeObject
.
tp_iter
¶ 一个可选的指向函数的指针,该函数返回对象的 iterator。 它的存在通常表明该类型的实例为 iterable (尽管序列在没有此函数的情况下也可能为可迭代对象)。
此函数的签名与
PyObject_GetIter()
的相同:PyObject *tp_iter(PyObject *self);
继承:
此字段会被子类型继承。
-
iternextfunc
PyTypeObject
.
tp_iternext
¶ 一个可选的指向函数的指针,该函数返回 iterator 中的下一项。 其签名为:
PyObject *tp_iternext(PyObject *self);
当该迭代器被耗尽时,它必须返回
NULL
;StopIteration
异常可能会设置也可能不设置。 当发生另一个错误时,它也必须返回NULL
。 它的存在表明该类型的实际是迭代器。迭代器类型也应当定义
tp_iter
函数,并且该函数应当返回迭代器实例本身(而不是新的迭代器实例)。此函数的签名与
PyIter_Next()
的相同。继承:
此字段会被子类型继承。
-
struct PyMethodDef *
PyTypeObject
.
tp_methods
¶ 一个可选的指向
PyMethodDef
结构体的以NULL
结束的静态数组的指针,它声明了此类型的常规方法。对于该数组中的每一项,都会向类型的字典 (参见下面的
tp_dict
) 添加一个包含方法描述器的条目。继承:
该字段不会被子类型所继承(方法是通过不同的机制来继承的)。
-
struct PyMemberDef *
PyTypeObject
.
tp_members
¶ 一个可选的指向
PyMemberDef
结构体的以NULL
结束的静态数组的指针,它声明了此类型的常规数据成员(字段或槽位)。对于该数组中的每一项,都会向类型的字典 (参见下面的
tp_dict
) 添加一个包含方法描述器的条目。继承:
该字段不会被子类型所继承(成员是通过不同的机制来继承的)。
-
struct PyGetSetDef *
PyTypeObject
.
tp_getset
¶ 一个可选的指向
PyGetSetDef
结构体的以NULL
结束的静态数组的指针,它声明了此类型的实例中的被计算属性。对于该数组中的每一项,都会向类型的字典 (参见下面的
tp_dict
) 添加一个包含读写描述器的条目。继承:
该字段不会被子类型所继承(被计算属性是通过不同的机制来继承的)。
-
PyTypeObject *
PyTypeObject
.
tp_base
¶ 一个可选的指向类型特征属性所继承的基类型的指针。 在这个层级上,只支持单继承;多重继承需要通过调用元类型动态地创建类型对象。
注解
槽位初始化需要遵循初始化全局变量的规则。 C99 要求初始化器为“地址常量”。 隐式转换为指针的函数指示器如
PyType_GenericNew()
都是有效的 C99 地址常量。However, the unary '&' operator applied to a non-static variable like
PyBaseObject_Type()
is not required to produce an address constant. Compilers may support this (gcc does), MSVC does not. Both compilers are strictly standard conforming in this particular behavior.因此,应当在扩展模块的初始化函数中设置
tp_base
。继承:
该字段不会被子类型继承(显然)。
默认:
该字段默认为
&PyBaseObject_Type
(对 Python 程序员来说即object
类型)。
-
PyObject *
PyTypeObject
.
tp_dict
¶ 类型的字典将由
PyType_Ready()
存储到这里。This field should normally be initialized to
NULL
before PyType_Ready is called; it may also be initialized to a dictionary containing initial attributes for the type. OncePyType_Ready()
has initialized the type, extra attributes for the type may be added to this dictionary only if they don't correspond to overloaded operations (like__add__()
).继承:
该字段不会被子类型所继承(但在这里定义的属性是通过不同的机制来继承的)。
默认:
如果该字段为
NULL
,PyType_Ready()
将为它分配一个新字典。警告
通过字典 C-API 使用
PyDict_SetItem()
或修改tp_dict
是不安全的。
-
descrgetfunc
PyTypeObject
.
tp_descr_get
¶ 一个可选的指向“描述器获取”函数的指针。
函数的签名为:
PyObject * tp_descr_get(PyObject *self, PyObject *obj, PyObject *type);
继承:
此字段会被子类型继承。
-
descrsetfunc
PyTypeObject
.
tp_descr_set
¶ 一个指向用于设置和删除描述器值的函数的选项指针。
函数的签名为:
int tp_descr_set(PyObject *self, PyObject *obj, PyObject *value);
将 value 参数设为
NULL
以删除该值。继承:
此字段会被子类型继承。
-
Py_ssize_t
PyTypeObject
.
tp_dictoffset
¶ 如果该类型的实例具有一个包含实例变量的字典,则此字段将为非零值并包含该实例变量字典的类型的实例的偏移量;该偏移量将由
PyObject_GenericGetAttr()
使用。不要将该字段与
tp_dict
混淆;后者是由类型对象本身的属性组成的字典。If the value of this field is greater than zero, it specifies the offset from the start of the instance structure. If the value is less than zero, it specifies the offset from the end of the instance structure. A negative offset is more expensive to use, and should only be used when the instance structure contains a variable-length part. This is used for example to add an instance variable dictionary to subtypes of
str
ortuple
. Note that thetp_basicsize
field should account for the dictionary added to the end in that case, even though the dictionary is not included in the basic object layout. On a system with a pointer size of 4 bytes,tp_dictoffset
should be set to-4
to indicate that the dictionary is at the very end of the structure.The real dictionary offset in an instance can be computed from a negative
tp_dictoffset
as follows:dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset if dictoffset is not aligned on sizeof(void*): round up to sizeof(void*)
where
tp_basicsize
,tp_itemsize
andtp_dictoffset
are taken from the type object, andob_size
is taken from the instance. The absolute value is taken because ints use the sign ofob_size
to store the sign of the number. (There's never a need to do this calculation yourself; it is done for you by_PyObject_GetDictPtr()
.)继承:
This field is inherited by subtypes, but see the rules listed below. A subtype may override this offset; this means that the subtype instances store the dictionary at a difference offset than the base type. Since the dictionary is always found via
tp_dictoffset
, this should not be a problem.When a type defined by a class statement has no
__slots__
declaration, and none of its base types has an instance variable dictionary, a dictionary slot is added to the instance layout and thetp_dictoffset
is set to that slot's offset.When a type defined by a class statement has a
__slots__
declaration, the type inherits itstp_dictoffset
from its base type.(Adding a slot named
__dict__
to the__slots__
declaration does not have the expected effect, it just causes confusion. Maybe this should be added as a feature just like__weakref__
though.)默认:
This slot has no default. For static types, if the field is
NULL
then no__dict__
gets created for instances.
-
initproc
PyTypeObject
.
tp_init
¶ 一个可选的指向实例初始化函数的指针。
This function corresponds to the
__init__()
method of classes. Like__init__()
, it is possible to create an instance without calling__init__()
, and it is possible to reinitialize an instance by calling its__init__()
method again.函数的签名为:
int tp_init(PyObject *self, PyObject *args, PyObject *kwds);
The self argument is the instance to be initialized; the args and kwds arguments represent positional and keyword arguments of the call to
__init__()
.tp_init
函数如果不为NULL
,将在通过调用类型正常创建其实例时被调用,即在类型的tp_new
函数返回一个该类型的实例时。 如果tp_new
函数返回了一个不是原始类型的子类型的其他类型的实例,则tp_init
函数不会被调用;如果tp_new
返回了一个原始类型的子类型的实例,则该子类型的tp_init
将被调用。成功时返回
0
,发生错误时则返回-1
并在错误上设置一个异常。and sets an exception on error.继承:
此字段会被子类型继承。
默认:
对于 静态类型 来说该字段没有默认值。
-
allocfunc
PyTypeObject
.
tp_alloc
¶ 指向一个实例分配函数的可选指针。
函数的签名为:
PyObject *tp_alloc(PyTypeObject *self, Py_ssize_t nitems);
继承:
该字段会被静态子类型继承,但不会被动态子类型(通过 class 语句创建的子类型)继承。
默认:
对于动态子类型,该字段总是会被设为
PyType_GenericAlloc()
,以强制应用标准的堆分配策略。For static subtypes,
PyBaseObject_Type
usesPyType_GenericAlloc()
. That is the recommended value for all statically defined types.
-
newfunc
PyTypeObject
.
tp_new
¶ 一个可选的指向实例创建函数的指针。
函数的签名为:
PyObject *tp_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds);
subtype 参数是被创建的对象的类型;args 和 kwds 参数表示调用类型时传入的位置和关键字参数。 请注意 subtype 不是必须与被调用的
tp_new
函数所属的类型相同;它可以是该类型的子类型(但不能是完全无关的类型)。tp_new
函数应当调用subtype->tp_alloc(subtype, nitems)
来为对象分配空间,然后只执行绝对有必要的进一步初始化操作。 可以安全地忽略或重复的初始化操作应当放在tp_init
处理器中。 一个关键的规则是对于不可变类型来说,所有初始化操作都应当在tp_new
中发生,而对于可变类型,大部分初始化操作都应当推迟到tp_init
再执行。Set the
Py_TPFLAGS_DISALLOW_INSTANTIATION
flag to disallow creating instances of the type in Python.继承:
该字段会被子类型所继承,例外情况是它不会被
tp_base
为NULL
或&PyBaseObject_Type
的 静态类型 所继承。默认:
对于 静态类型 该字段没有默认值。 这意味着如果槽位被定义为
NULL
,则无法调用此类型来创建新的实例;应当存在 其他办法来创建实例,例如工厂函数等。
-
freefunc
PyTypeObject
.
tp_free
¶ 一个可选的指向实例释放函数的指针。 函数的签名为:
void tp_free(void *self);
一个兼容该签名的初始化器是
PyObject_Free()
。继承:
该字段会被静态子类型继承,但不会被动态子类型(通过 class 语句创建的子类型)继承
默认:
In dynamic subtypes, this field is set to a deallocator suitable to match
PyType_GenericAlloc()
and the value of thePy_TPFLAGS_HAVE_GC
flag bit.For static subtypes,
PyBaseObject_Type
uses PyObject_Del.
-
inquiry
PyTypeObject
.
tp_is_gc
¶ 可选的指向垃圾回收器所调用的函数的指针。
The garbage collector needs to know whether a particular object is collectible or not. Normally, it is sufficient to look at the object's type's
tp_flags
field, and check thePy_TPFLAGS_HAVE_GC
flag bit. But some types have a mixture of statically and dynamically allocated instances, and the statically allocated instances are not collectible. Such types should define this function; it should return1
for a collectible instance, and0
for a non-collectible instance. The signature is:int tp_is_gc(PyObject *self);
(此对象的唯一样例是类型本身。 元类型
PyType_Type
定义了该函数来区分静态和 动态分配的类型。)继承:
此字段会被子类型继承。
默认:
This slot has no default. If this field is
NULL
,Py_TPFLAGS_HAVE_GC
is used as the functional equivalent.
-
PyObject *
PyTypeObject
.
tp_bases
¶ 基类型的元组。
此字段应当被设为
NULL
并被视为只读。 Python 将在类型初始化时
填充它。对于动态创建的类,可以使用
Py_tp_bases
槽位
来代替PyType_FromSpecWithBases()
的 bases 参数。 推荐使用参数形式。警告
多重继承不适合静态定义的类型。 如果你将
tp_bases
设为一个元组,Python 将不会引发错误,但某些槽位将只从第一个基类型继承。继承:
这个字段不会被继承。
-
PyObject *
PyTypeObject
.
tp_mro
¶ 包含基类型的扩展集的元组,以类型本身开始并以
object
作为结束,使用方法解析顺序。此字段应当被设为
NULL
并被视为只读。 Python 将在类型初始化时
填充它。继承:
这个字段不会被继承;它是通过
PyType_Ready()
计算得到的。
-
PyObject *
PyTypeObject
.
tp_cache
¶ 尚未使用。 仅供内部使用。
继承:
这个字段不会被继承。
-
PyObject *
PyTypeObject
.
tp_subclasses
¶ 由对子类的弱引用组成的列表。 仅供内部使用。
继承:
这个字段不会被继承。
-
PyObject *
PyTypeObject
.
tp_weaklist
¶ 弱引用列表头,用于指向该类型对象的弱引用。 不会被继承。 仅限内部使用。
继承:
这个字段不会被继承。
-
destructor
PyTypeObject
.
tp_del
¶ 该字段已被弃用。 请改用
tp_finalize
。
-
unsigned int
PyTypeObject
.
tp_version_tag
¶ 用于索引至方法缓存。 仅限内部使用。
继承:
这个字段不会被继承。
-
destructor
PyTypeObject
.
tp_finalize
¶ 一个可选的指向实例最终化函数的指针。 函数的签名为:
void tp_finalize(PyObject *self);
如果设置了
tp_finalize
,解释器将在最终化特定实例时调用它一次。 它将由垃圾回收器调用(如果实例是单独循环引用的一部分)或是在对象被释放之前被调用。 不论是哪种方式,它都肯定会在尝试打破循环引用之前被调用,以确保它所操作的对象处于正常状态。tp_finalize
不应改变当前异常状态;因此,编写非关键终结器的推荐做法如下:static void local_finalize(PyObject *self) { PyObject *error_type, *error_value, *error_traceback; /* Save the current exception, if any. */ PyErr_Fetch(&error_type, &error_value, &error_traceback); /* ... */ /* Restore the saved exception. */ PyErr_Restore(error_type, error_value, error_traceback); }
另外还需要注意,在应用垃圾回收机制的 Python 中,
tp_dealloc
可以从任意 Python 线程被调用,而不仅是创建该对象的线程(如果对象成为引用计数循环的一部分,则该循环可能会被任何线程上的垃圾回收操作所回收)。 这对 Python API 调用来说不是问题,因为 tp_dealloc 调用所在的线程将持有全局解释器锁(GIL)。 但是,如果被销毁的对象又销毁了来自其他 C 或 C++ 库的对象,则应当小心确保在调用 tp_dealloc 的线程上销毁这些对象不会破坏这些库的任何资源。继承:
此字段会被子类型继承。
3.4 新版功能.
在 3.8 版更改: Before version 3.8 it was necessary to set the
Py_TPFLAGS_HAVE_FINALIZE
flags bit in order for this field to be used. This is no longer required.参见
"安全的对象最终化" (PEP 442)
-
vectorcallfunc
PyTypeObject
.
tp_vectorcall
¶ Vectorcall function to use for calls of this type object. In other words, it is used to implement vectorcall for
type.__call__
. Iftp_vectorcall
isNULL
, the default call implementation using__new__
and__init__
is used.继承:
这个字段不会被继承。
3.9 新版功能: (这个字段从 3.8 起即存在,但是从 3.9 开始投入使用)
静态类型¶
在传统上,在 C 代码中定义的类型都是 静态的,也就是说,PyTypeObject
结构体在代码中直接定义并使用 PyType_Ready()
来初始化。
这就导致了与在 Python 中定义的类型相关联的类型限制:
静态类型只能拥有一个基类;换句话说,他们不能使用多重继承。
静态类型对象(但并非它们的实例)是不可变对象。 不可能在 Python 中添加或修改类型对象的属性。
静态类型对象是跨 子解释器 共享的,因此它们不应包括任何子解释器专属的状态。
Also, since PyTypeObject
is only part of the Limited API as an opaque struct, any extension modules using static types must be
compiled for a specific Python minor version.
堆类型¶
An alternative to static types is heap-allocated types,
or heap types for short, which correspond closely to classes created by
Python's class
statement. Heap types have the Py_TPFLAGS_HEAPTYPE
flag set.
This is done by filling a PyType_Spec
structure and calling
PyType_FromSpec()
, PyType_FromSpecWithBases()
,
or PyType_FromModuleAndSpec()
.
数字对象结构体¶
-
type
PyNumberMethods
¶ 该结构体持有指向被对象用来实现数字协议的函数的指针。 每个函数都被 数字协议 一节中记录的对应名称的函数所使用。
结构体定义如下:
typedef struct { binaryfunc nb_add; binaryfunc nb_subtract; binaryfunc nb_multiply; binaryfunc nb_remainder; binaryfunc nb_divmod; ternaryfunc nb_power; unaryfunc nb_negative; unaryfunc nb_positive; unaryfunc nb_absolute; inquiry nb_bool; unaryfunc nb_invert; binaryfunc nb_lshift; binaryfunc nb_rshift; binaryfunc nb_and; binaryfunc nb_xor; binaryfunc nb_or; unaryfunc nb_int; void *nb_reserved; unaryfunc nb_float; binaryfunc nb_inplace_add; binaryfunc nb_inplace_subtract; binaryfunc nb_inplace_multiply; binaryfunc nb_inplace_remainder; ternaryfunc nb_inplace_power; binaryfunc nb_inplace_lshift; binaryfunc nb_inplace_rshift; binaryfunc nb_inplace_and; binaryfunc nb_inplace_xor; binaryfunc nb_inplace_or; binaryfunc nb_floor_divide; binaryfunc nb_true_divide; binaryfunc nb_inplace_floor_divide; binaryfunc nb_inplace_true_divide; unaryfunc nb_index; binaryfunc nb_matrix_multiply; binaryfunc nb_inplace_matrix_multiply; } PyNumberMethods;
注解
双目和三目函数必须检查其所有操作数的类型,并实现必要的转换(至少有一个操作数是所定义类型的实例)。 如果没有为所给出的操作数定义操作,则双目和三目函数必须返回
Py_NotImplemented
,如果发生了其他错误则它们必须返回NULL
并设置一个异常。注解
The
nb_reserved
field should always beNULL
. It was previously callednb_long
, and was renamed in Python 3.0.1.
-
binaryfunc
PyNumberMethods
.
nb_add
¶
-
binaryfunc
PyNumberMethods
.
nb_subtract
¶
-
binaryfunc
PyNumberMethods
.
nb_multiply
¶
-
binaryfunc
PyNumberMethods
.
nb_remainder
¶
-
binaryfunc
PyNumberMethods
.
nb_divmod
¶
-
ternaryfunc
PyNumberMethods
.
nb_power
¶
-
unaryfunc
PyNumberMethods
.
nb_negative
¶
-
unaryfunc
PyNumberMethods
.
nb_positive
¶
-
unaryfunc
PyNumberMethods
.
nb_absolute
¶
-
inquiry
PyNumberMethods
.
nb_bool
¶
-
unaryfunc
PyNumberMethods
.
nb_invert
¶
-
binaryfunc
PyNumberMethods
.
nb_lshift
¶
-
binaryfunc
PyNumberMethods
.
nb_rshift
¶
-
binaryfunc
PyNumberMethods
.
nb_and
¶
-
binaryfunc
PyNumberMethods
.
nb_xor
¶
-
binaryfunc
PyNumberMethods
.
nb_or
¶
-
unaryfunc
PyNumberMethods
.
nb_int
¶
-
void *
PyNumberMethods
.
nb_reserved
¶
-
unaryfunc
PyNumberMethods
.
nb_float
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_add
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_subtract
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_multiply
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_remainder
¶
-
ternaryfunc
PyNumberMethods
.
nb_inplace_power
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_lshift
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_rshift
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_and
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_xor
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_or
¶
-
binaryfunc
PyNumberMethods
.
nb_floor_divide
¶
-
binaryfunc
PyNumberMethods
.
nb_true_divide
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_floor_divide
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_true_divide
¶
-
unaryfunc
PyNumberMethods
.
nb_index
¶
-
binaryfunc
PyNumberMethods
.
nb_matrix_multiply
¶
-
binaryfunc
PyNumberMethods
.
nb_inplace_matrix_multiply
¶
映射对象结构体¶
-
type
PyMappingMethods
¶ 该结构体持有指向对象用于实现映射协议的函数的指针。 它有三个成员:
-
lenfunc
PyMappingMethods
.
mp_length
¶ 该函数将被
PyMapping_Size()
和PyObject_Size()
使用,并具有相同的签名。 如果对象没有定义长度则此槽位可被设为NULL
。
-
binaryfunc
PyMappingMethods
.
mp_subscript
¶ 该函数将被
PyObject_GetItem()
和PySequence_GetSlice()
使用,并具有与PyObject_GetItem()
相同的签名。 此槽位必须被填充以便PyMapping_Check()
函数返回1
,否则它可以为NULL
。
-
objobjargproc
PyMappingMethods
.
mp_ass_subscript
¶ This function is used by
PyObject_SetItem()
,PyObject_DelItem()
,PyObject_SetSlice()
andPyObject_DelSlice()
. It has the same signature asPyObject_SetItem()
, but v can also be set toNULL
to delete an item. If this slot isNULL
, the object does not support item assignment and deletion.
序列对象结构体¶
-
type
PySequenceMethods
¶ 该结构体持有指向对象用于实现序列协议的函数的指针。
-
lenfunc
PySequenceMethods
.
sq_length
¶ 此函数被
PySequence_Size()
和PyObject_Size()
所使用,并具有与它们相同的签名。 它还被用于通过sq_item
和sq_ass_item
槽位来处理负索引号。
-
binaryfunc
PySequenceMethods
.
sq_concat
¶ 此函数被
PySequence_Concat()
所使用并具有相同的签名。 在尝试通过nb_add
槽位执行数值相加之后它还会被用于+
运算符。
-
ssizeargfunc
PySequenceMethods
.
sq_repeat
¶ 此函数被
PySequence_Repeat()
所使用并具有相同的签名。 在尝试通过nb_multiply
槽位执行数值相乘之后它还会被用于*
运算符。
-
ssizeargfunc
PySequenceMethods
.
sq_item
¶ 此函数被
PySequence_GetItem()
所使用并具有相同的签名。 在尝试通过mp_subscript
槽位执行下标操作之后它还会被用于PyObject_GetItem()
。 该槽位必须被填充以便PySequence_Check()
函数返回1
,否则它可以为NULL
。Negative indexes are handled as follows: if the
sq_length
slot is filled, it is called and the sequence length is used to compute a positive index which is passed tosq_item
. Ifsq_length
isNULL
, the index is passed as is to the function.
-
ssizeobjargproc
PySequenceMethods
.
sq_ass_item
¶ 此函数被
PySequence_SetItem()
所使用并具有相同的签名。 在尝试通过mp_ass_subscript
槽位执行条目赋值和删除操作之后它还会被用于PyObject_SetItem()
和PyObject_DelItem()
。 如果对象不支持条目和删除则该槽位可以保持为NULL
。
-
objobjproc
PySequenceMethods
.
sq_contains
¶ 该函数可供
PySequence_Contains()
使用并具有相同的签名。 此槽位可以保持为NULL
,在此情况下PySequence_Contains()
只需遍历该序列直到找到一个匹配。
-
binaryfunc
PySequenceMethods
.
sq_inplace_concat
¶ 此函数被
PySequence_InPlaceConcat()
所使用并具有相同的签名。 它应当修改它的第一个操作数,并将其返回。 该槽位可以保持为NULL
,在此情况下PySequence_InPlaceConcat()
将回退到PySequence_Concat()
。 在尝试通过nb_inplace_add
槽位执行数字原地相加之后它还会被用于增强赋值运算符+=
。
-
ssizeargfunc
PySequenceMethods
.
sq_inplace_repeat
¶ 此函数被
PySequence_InPlaceRepeat()
所使用并具有相同的签名。 它应当修改它的第一个操作数,并将其返回。 该槽位可以保持为NULL
,在此情况下PySequence_InPlaceRepeat()
将回退到PySequence_Repeat()
。 在尝试通过nb_inplace_multiply
槽位执行数字原地相乘之后它还会被用于增强赋值运算符*=
。
缓冲区对象结构体¶
-
getbufferproc
PyBufferProcs
.
bf_getbuffer
¶ 此函数的签名为:
int (PyObject *exporter, Py_buffer *view, int flags);
处理发给 exporter 的请求来填充 flags 所指定的 view。 除第 (3) 点外,此函数的实现必须执行以下步骤:
Check if the request can be met. If not, raise
PyExc_BufferError
, setview->obj
toNULL
and return-1
.填充请求的字段。
递增用于保存导出次数的内部计数器。
将
view->obj
设为 exporter 并递增view->obj
。返回
0
。
如果 exporter 是缓冲区提供方的链式或树型结构的一部分,则可以使用两种主要方案:
重导出:树型结构的每个成员作为导出对象并将
view->obj
设为对其自身的新引用。重定向:缓冲区请求将被重定向到树型结构的根对象。 在此,
view->obj
将为对根对象的新引用。
view 中每个字段的描述参见 缓冲区结构体 一节,导出方对于特定请求应当如何反应参见 缓冲区请求类型 一节。
所有在
Py_buffer
结构体中被指向的内存都属于导出方并必须保持有效直到不再有任何消费方。format
,shape
,strides
,suboffsets
和internal
对于消费方来说是只读的。PyBuffer_FillInfo()
提供了一种暴露简单字节缓冲区同时正确处理地所有请求类型的简便方式。PyObject_GetBuffer()
是针对包装此函数的消费方的接口。
-
releasebufferproc
PyBufferProcs
.
bf_releasebuffer
¶ 此函数的签名为:
void (PyObject *exporter, Py_buffer *view);
处理释放缓冲区资源的请求。 如果不需要释放任何资源,则
PyBufferProcs.bf_releasebuffer
可以为NULL
。 在其他情况下,此函数的标准实现将执行以下的可选步骤:递减用于保存导出次数的内部计数器。
如果计数器为
0
,则释放所有关联到 view 的内存。
导出方必须使用
internal
字段来记录缓冲区专属的资源。 该字段将确保恒定,而消费方则可能将原始缓冲区作为 view 参数传入。此函数不可递减
view->obj
,因为这是在PyBuffer_Release()
中自动完成的(此方案适用于打破循环引用)。PyBuffer_Release()
是针对包装此函数的消费方的接口。
异步对象结构体¶
3.5 新版功能.
-
type
PyAsyncMethods
¶ 此结构体将持有指向需要用来实现 awaitable 和 asynchronous iterator 对象的函数的指针。
结构体定义如下:
typedef struct { unaryfunc am_await; unaryfunc am_aiter; unaryfunc am_anext; sendfunc am_send; } PyAsyncMethods;
-
unaryfunc
PyAsyncMethods
.
am_await
¶ 此函数的签名为:
PyObject *am_await(PyObject *self);
返回的对象必须为 iterator,即对其执行
PyIter_Check()
必须返回1
。如果一个对象不是 awaitable 则此槽位可被设为
NULL
。
-
unaryfunc
PyAsyncMethods
.
am_aiter
¶ 此函数的签名为:
PyObject *am_aiter(PyObject *self);
必须返回一个 asynchronous iterator 对象。 请参阅
__anext__()
了解详情。如果一个对象没有实现异步迭代协议则此槽位可被设为
NULL
。
-
unaryfunc
PyAsyncMethods
.
am_anext
¶ 此函数的签名为:
PyObject *am_anext(PyObject *self);
Must return an awaitable object. See
__anext__()
for details. This slot may be set toNULL
.
-
sendfunc
PyAsyncMethods
.
am_send
¶ 此函数的签名为:
PySendResult am_send(PyObject *self, PyObject *arg, PyObject **result);
请参阅
PyIter_Send()
了解详情。 此槽位可被设为NULL
。3.10 新版功能.
槽位类型 typedef¶
-
typedef PyObject *(*
allocfunc
)(PyTypeObject *cls, Py_ssize_t nitems)¶ - Part of the Stable ABI.
The purpose of this function is to separate memory allocation from memory initialization. It should return a pointer to a block of memory of adequate length for the instance, suitably aligned, and initialized to zeros, but with
ob_refcnt
set to1
andob_type
set to the type argument. If the type'stp_itemsize
is non-zero, the object'sob_size
field should be initialized to nitems and the length of the allocated memory block should betp_basicsize + nitems*tp_itemsize
, rounded up to a multiple ofsizeof(void*)
; otherwise, nitems is not used and the length of the block should betp_basicsize
.此函数不应执行任何其他实例初始化操作,即使是分配额外内存也不应执行;那应当由
tp_new
来完成。
-
typedef void (*
destructor
)(PyObject*)¶ - Part of the Stable ABI.
-
typedef PyObject *(*
reprfunc
)(PyObject*)¶ - Part of the Stable ABI.
参见
tp_repr
。
-
typedef PyObject *(*
getattrfunc
)(PyObject *self, char *attr)¶ - Part of the Stable ABI.
返回对象的指定属性的值。
-
typedef int (*
setattrfunc
)(PyObject *self, char *attr, PyObject *value)¶ - Part of the Stable ABI.
为对象设置指定属性的值。 将 value 参数设为
NULL
将删除该属性。
-
typedef PyObject *(*
getattrofunc
)(PyObject *self, PyObject *attr)¶ - Part of the Stable ABI.
返回对象的指定属性的值。
参见
tp_getattro
。
-
typedef int (*
setattrofunc
)(PyObject *self, PyObject *attr, PyObject *value)¶ - Part of the Stable ABI.
为对象设置指定属性的值。 将 value 参数设为
NULL
将删除该属性。参见
tp_setattro
。
-
typedef PyObject *(*
descrgetfunc
)(PyObject*, PyObject*, PyObject*)¶ - Part of the Stable ABI.
参见
tp_descr_get
。
-
typedef int (*
descrsetfunc
)(PyObject*, PyObject*, PyObject*)¶ - Part of the Stable ABI.
参见
tp_descr_set
。
-
typedef Py_hash_t (*
hashfunc
)(PyObject*)¶ - Part of the Stable ABI.
参见
tp_hash
。
-
typedef PyObject *(*
richcmpfunc
)(PyObject*, PyObject*, int)¶ - Part of the Stable ABI.
参见
tp_richcompare
。
-
typedef PyObject *(*
getiterfunc
)(PyObject*)¶ - Part of the Stable ABI.
参见
tp_iter
。
-
typedef PyObject *(*
iternextfunc
)(PyObject*)¶ - Part of the Stable ABI.
参见
tp_iternext
。
-
typedef Py_ssize_t (*
lenfunc
)(PyObject*)¶ - Part of the Stable ABI.
-
typedef PyObject *(*
unaryfunc
)(PyObject*)¶ - Part of the Stable ABI.
-
typedef PyObject *(*
binaryfunc
)(PyObject*, PyObject*)¶ - Part of the Stable ABI.
-
typedef PyObject *(*
ssizeargfunc
)(PyObject*, Py_ssize_t)¶ - Part of the Stable ABI.
-
typedef int (*
ssizeobjargproc
)(PyObject*, Py_ssize_t, PyObject*)¶ - Part of the Stable ABI.
-
typedef int (*
objobjproc
)(PyObject*, PyObject*)¶ - Part of the Stable ABI.
-
typedef int (*
objobjargproc
)(PyObject*, PyObject*, PyObject*)¶ - Part of the Stable ABI.
例子¶
下面是一些 Python 类型定义的简单示例。 其中包括你可能会遇到的通常用法。 有些演示了令人困惑的边际情况。 要获取更多示例、实践信息以及教程,请参阅 自定义扩展类型:教程 和 定义扩展类型:已分类主题。
一个基本的 静态类型:
typedef struct {
PyObject_HEAD
const char *data;
} MyObject;
static PyTypeObject MyObject_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "mymod.MyObject",
.tp_basicsize = sizeof(MyObject),
.tp_doc = PyDoc_STR("My objects"),
.tp_new = myobj_new,
.tp_dealloc = (destructor)myobj_dealloc,
.tp_repr = (reprfunc)myobj_repr,
};
你可能还会看到带有更繁琐的初始化器的较旧代码(特别是在 CPython 代码库中):
static PyTypeObject MyObject_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"mymod.MyObject", /* tp_name */
sizeof(MyObject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)myobj_dealloc, /* tp_dealloc */
0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_as_async */
(reprfunc)myobj_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
0, /* tp_flags */
PyDoc_STR("My objects"), /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
myobj_new, /* tp_new */
};
一个支持弱引用、实例字典和哈希运算的类型:
typedef struct {
PyObject_HEAD
const char *data;
PyObject *inst_dict;
PyObject *weakreflist;
} MyObject;
static PyTypeObject MyObject_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "mymod.MyObject",
.tp_basicsize = sizeof(MyObject),
.tp_doc = PyDoc_STR("My objects"),
.tp_weaklistoffset = offsetof(MyObject, weakreflist),
.tp_dictoffset = offsetof(MyObject, inst_dict),
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
.tp_new = myobj_new,
.tp_traverse = (traverseproc)myobj_traverse,
.tp_clear = (inquiry)myobj_clear,
.tp_alloc = PyType_GenericNew,
.tp_dealloc = (destructor)myobj_dealloc,
.tp_repr = (reprfunc)myobj_repr,
.tp_hash = (hashfunc)myobj_hash,
.tp_richcompare = PyBaseObject_Type.tp_richcompare,
};
A str subclass that cannot be subclassed and cannot be called
to create instances (e.g. uses a separate factory func) using
Py_TPFLAGS_DISALLOW_INSTANTIATION
flag:
typedef struct {
PyUnicodeObject raw;
char *extra;
} MyStr;
static PyTypeObject MyStr_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "mymod.MyStr",
.tp_basicsize = sizeof(MyStr),
.tp_base = NULL, // set to &PyUnicode_Type in module init
.tp_doc = PyDoc_STR("my custom str"),
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_DISALLOW_INSTANTIATION,
.tp_repr = (reprfunc)myobj_repr,
};
最简单的固定长度实例 静态类型:
typedef struct {
PyObject_HEAD
} MyObject;
static PyTypeObject MyObject_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "mymod.MyObject",
};
最简单的具有可变长度实例的 静态类型:
typedef struct {
PyObject_VAR_HEAD
const char *data[1];
} MyObject;
static PyTypeObject MyObject_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "mymod.MyObject",
.tp_basicsize = sizeof(MyObject) - sizeof(char *),
.tp_itemsize = sizeof(char *),
};