Type Objects¶
Perhaps one of the most important structures of the Python object system is thestructure that defines a new type: thePyTypeObject structure. Typeobjects can be handled using any of thePyObject_*() orPyType_*() functions, but do not offer much that’s interesting to mostPython applications. These objects are fundamental to how objects behave, sothey are very important to the interpreter itself and to any extension modulethat implements new types.
Type objects are fairly large compared to most of the standard types. The reasonfor the size is that each type object stores a large number of values, mostly Cfunction pointers, each of which implements a small part of the type’sfunctionality. The fields of the type object are examined in detail in thissection. The fields will be described in the order in which they occur in thestructure.
Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, coercion, intargfunc,intintargfunc, intobjargproc, intintobjargproc, objobjargproc, destructor,freefunc, printfunc, getattrfunc, getattrofunc, setattrfunc, setattrofunc,cmpfunc, reprfunc, hashfunc
The structure definition forPyTypeObject can be found inInclude/object.h. For convenience of reference, this repeats thedefinition found there:
typedefstruct_typeobject{PyObject_VAR_HEADchar*tp_name;/* For printing, in format "<module>.<name>" */inttp_basicsize,tp_itemsize;/* For allocation *//* Methods to implement standard operations */destructortp_dealloc;printfunctp_print;getattrfunctp_getattr;setattrfunctp_setattr;cmpfunctp_compare;reprfunctp_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) */hashfunctp_hash;ternaryfunctp_call;reprfunctp_str;getattrofunctp_getattro;setattrofunctp_setattro;/* Functions to access object as input/output buffer */PyBufferProcs*tp_as_buffer;/* Flags to define presence of optional/expanded features */longtp_flags;char*tp_doc;/* Documentation string *//* Assigned meaning in release 2.0 *//* call function for all accessible objects */traverseproctp_traverse;/* delete references to contained objects */inquirytp_clear;/* Assigned meaning in release 2.1 *//* rich comparisons */richcmpfunctp_richcompare;/* weak reference enabler */longtp_weaklistoffset;/* Added in release 2.2 *//* Iterators */getiterfunctp_iter;iternextfunctp_iternext;/* Attribute descriptor and subclassing stuff */structPyMethodDef*tp_methods;structPyMemberDef*tp_members;structPyGetSetDef*tp_getset;struct_typeobject*tp_base;PyObject*tp_dict;descrgetfunctp_descr_get;descrsetfunctp_descr_set;longtp_dictoffset;initproctp_init;allocfunctp_alloc;newfunctp_new;freefunctp_free;/* Low-level free-memory routine */inquirytp_is_gc;/* For PyObject_IS_GC */PyObject*tp_bases;PyObject*tp_mro;/* method resolution order */PyObject*tp_cache;PyObject*tp_subclasses;PyObject*tp_weaklist;}PyTypeObject;
The type object structure extends thePyVarObject structure. Theob_size field is used for dynamic types (created bytype_new(),usually called from a class statement). Note thatPyType_Type (themetatype) initializestp_itemsize, which means that its instances (i.e.type objects)must have theob_size field.
- PyObject*
PyObject._ob_next¶ - PyObject*
PyObject._ob_prev¶ These fields are only present when the macro
Py_TRACE_REFSis defined.Their initialization toNULL is taken care of by thePyObject_HEAD_INITmacro. For statically allocated objects, these fields always remainNULL.For dynamically allocated objects, these two fields are used to link the objectinto a doubly-linked list ofall live objects on the heap. This could be usedfor various debugging purposes; currently the only use is to print the objectsthat are still alive at the end of a run when the environment variablePYTHONDUMPREFSis set.These fields are not inherited by subtypes.
- Py_ssize_t
PyObject.ob_refcnt¶ This is the type object’s reference count, initialized to
1by thePyObject_HEAD_INITmacro. Note that for statically allocated type objects,the type’s instances (objects whoseob_typepoints back to the type) donot count as references. But for dynamically allocated type objects, theinstancesdo count as references.This field is not inherited by subtypes.
Changed in version 2.5:This field used to be an
inttype. This might require changesin your code for properly supporting 64-bit systems.
- PyTypeObject*
PyObject.ob_type¶ This is the type’s type, in other words its metatype. It is initialized by theargument to the
PyObject_HEAD_INITmacro, and its value should normally be&PyType_Type. However, for dynamically loadable extension modules that mustbe usable on Windows (at least), the compiler complains that this is not a validinitializer. Therefore, the convention is to passNULL to thePyObject_HEAD_INITmacro and to initialize this field explicitly at thestart of the module’s initialization function, before doing anything else. Thisis typically done like this:Foo_Type.ob_type=&PyType_Type;
This should be done before any instances of the type are created.
PyType_Ready()checks ifob_typeisNULL, and if so,initializes it: in Python 2.2, it is set to&PyType_Type; in Python 2.2.1and later it is initialized to theob_typefield of the base class.PyType_Ready()will not change this field if it is non-zero.In Python 2.2, this field is not inherited by subtypes. In 2.2.1, and in 2.3and beyond, it is inherited by subtypes.
- Py_ssize_t
PyVarObject.ob_size¶ For statically allocated type objects, this should be initialized to zero. Fordynamically allocated type objects, this field has a special internal meaning.
This field is not inherited by subtypes.
- char*
PyTypeObject.tp_name¶ Pointer to a NUL-terminated string containing the name of the type. For typesthat are accessible as module globals, the string should be the full modulename, followed by a dot, followed by the type name; for built-in types, itshould be just the type name. If the module is a submodule of a package, thefull package name is part of the full module name. For example, a type named
Tdefined in moduleMin subpackageQin packagePshould have thetp_nameinitializer"P.Q.M.T".For dynamically allocated type objects, this should just be the type name, andthe module name explicitly stored in the type dict as the value for key
'__module__'.For statically allocated type objects, the tp_name field should contain a dot.Everything before the last dot is made accessible as the
__module__attribute, and everything after the last dot is made accessible as the__name__attribute.If no dot is present, the entire
tp_namefield is made accessible as the__name__attribute, and the__module__attribute is undefined(unless explicitly set in the dictionary, as explained above). This means yourtype will be impossible to pickle. Additionally, it will not be listed inmodule documentations created with pydoc.This field is not inherited by subtypes.
- Py_ssize_t
PyTypeObject.tp_basicsize¶ - Py_ssize_t
PyTypeObject.tp_itemsize¶ These fields allow calculating the size in bytes of instances of the type.
There are two kinds of types: types with fixed-length instances have a zero
tp_itemsizefield, types with variable-length instances have a non-zerotp_itemsizefield. For a type with fixed-length instances, allinstances have the same size, given intp_basicsize.For a type with variable-length instances, the instances must have an
ob_sizefield, and the instance size istp_basicsizeplus Ntimestp_itemsize, where N is the “length” of the object. The value ofN is typically stored in the instance’sob_sizefield. There areexceptions: for example, long ints use a negativeob_sizeto indicate anegative number, and N isabs(ob_size)there. Also, the presence of anob_sizefield in the instance layout doesn’t mean that the instancestructure is variable-length (for example, the structure for the list type hasfixed-length instances, yet those instances have a meaningfulob_sizefield).The basic size includes the fields in the instance declared by the macro
PyObject_HEADorPyObject_VAR_HEAD(whichever is used todeclare the instance struct) and this in turn includes the_ob_prevand_ob_nextfields if they are present. This means that the only correctway to get an initializer for thetp_basicsizeis to use thesizeofoperator on the struct used to declare the instance layout.The basic size does not include the GC header size (this is new in Python 2.2;in 2.1 and 2.0, the GC header size was included intp_basicsize).These fields are inherited separately by subtypes. If the base type has anon-zero
tp_itemsize, it is generally not safe to settp_itemsizeto a different non-zero value in a subtype (though thisdepends on the implementation of the base type).A note about alignment: if the variable items require a particular alignment,this should be taken care of by the value of
tp_basicsize. Example:suppose a type implements an array ofdouble.tp_itemsizeissizeof(double). It is the programmer’s responsibility thattp_basicsizeis a multiple ofsizeof(double)(assuming this is thealignment requirement fordouble).
- destructor
PyTypeObject.tp_dealloc¶ A pointer to the instance destructor function. This function must be definedunless the type guarantees that its instances will never be deallocated (as isthe case for the singletons
NoneandEllipsis).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. Thedestructor function should free all references which the instance owns, free allmemory buffers owned by the instance (using the freeing function correspondingto the allocation function used to allocate the buffer), and finally (as itslast action) call the type’stp_freefunction. If the type is notsubtypable (doesn’t have thePy_TPFLAGS_BASETYPEflag bit set), it ispermissible to call the object deallocator directly instead of viatp_free. The object deallocator should be the one used to allocate theinstance; this is normallyPyObject_Del()if the instance was allocatedusingPyObject_New()orPyObject_VarNew(), orPyObject_GC_Del()if the instance was allocated usingPyObject_GC_New()orPyObject_GC_NewVar().This field is inherited by subtypes.
- printfunc
PyTypeObject.tp_print¶ An optional pointer to the instance print function.
The print function is only called when the instance is printed to areal file;when it is printed to a pseudo-file (like a
StringIOinstance), theinstance’stp_reprortp_strfunction is called to convert it toa string. These are also called when the type’stp_printfield isNULL. A type should never implementtp_printin a way that producesdifferent output thantp_reprortp_strwould.The print function is called with the same signature as
PyObject_Print():inttp_print(PyObject*self,FILE*file,intflags). Theself argument isthe instance to be printed. Thefile argument is the stdio file to which itis to be printed. Theflags argument is composed of flag bits. The only flagbit currently defined isPy_PRINT_RAW. When thePy_PRINT_RAWflag bit is set, the instance should be printed the same way astp_strwould format it; when thePy_PRINT_RAWflag bit is clear, the instanceshould be printed the same was astp_reprwould format it. It shouldreturn-1and set an exception condition when an error occurred during thecomparison.It is possible that the
tp_printfield will be deprecated. In any case,it is recommended not to definetp_print, but instead to rely ontp_reprandtp_strfor printing.This field is inherited by subtypes.
- getattrfunc
PyTypeObject.tp_getattr¶ An optional pointer to the get-attribute-string function.
This field is deprecated. When it is defined, it should point to a functionthat acts the same as the
tp_getattrofunction, but taking a C stringinstead of a Python string object to give the attribute name. The signature isPyObject*tp_getattr(PyObject*o,char*attr_name);
This field is inherited by subtypes together with
tp_getattro: a subtypeinherits bothtp_getattrandtp_getattrofrom its base type whenthe subtype’stp_getattrandtp_getattroare bothNULL.
- setattrfunc
PyTypeObject.tp_setattr¶ An optional pointer to the function for setting and deleting attributes.
This field is deprecated. When it is defined, it should point to a functionthat acts the same as the
tp_setattrofunction, but taking a C stringinstead of a Python string object to give the attribute name. The signature isPyObject*tp_setattr(PyObject*o,char*attr_name,PyObject*v);
Thev argument is set toNULL to delete the attribute.This field is inherited by subtypes together with
tp_setattro: a subtypeinherits bothtp_setattrandtp_setattrofrom its base type whenthe subtype’stp_setattrandtp_setattroare bothNULL.
- cmpfunc
PyTypeObject.tp_compare¶ An optional pointer to the three-way comparison function.
The signature is the same as for
PyObject_Compare(). The function shouldreturn1ifself greater thanother,0ifself is equal toother, and-1ifself less thanother. It should return-1andset an exception condition when an error occurred during the comparison.This field is inherited by subtypes together with
tp_richcompareandtp_hash: a subtypes inherits all three oftp_compare,tp_richcompare, andtp_hashwhen the subtype’stp_compare,tp_richcompare, andtp_hashare allNULL.
- reprfunc
PyTypeObject.tp_repr¶ An optional pointer to a function that implements the built-in function
repr().The signature is the same as for
PyObject_Repr(); it must return a stringor a Unicode object. Ideally, this function should return a string that, whenpassed toeval(), given a suitable environment, returns an object with thesame value. If this is not feasible, it should return a string starting with'<'and ending with'>'from which both the type and the value of theobject can be deduced.When this field is not set, a string of the form
<%sobjectat%p>isreturned, where%sis replaced by the type name, and%pby the object’smemory address.This field is inherited by subtypes.
- PyNumberMethods*
tp_as_number¶ Pointer to an additional structure that contains fields relevant only toobjects which implement the number protocol. These fields are documented inNumber Object Structures.
The
tp_as_numberfield is not inherited, but the contained fields areinherited individually.
- PySequenceMethods*
tp_as_sequence¶ Pointer to an additional structure that contains fields relevant only toobjects which implement the sequence protocol. These fields are documentedinSequence Object Structures.
The
tp_as_sequencefield is not inherited, but the contained fieldsare inherited individually.
- PyMappingMethods*
tp_as_mapping¶ Pointer to an additional structure that contains fields relevant only toobjects which implement the mapping protocol. These fields are documented inMapping Object Structures.
The
tp_as_mappingfield is not inherited, but the contained fieldsare inherited individually.
- hashfunc
PyTypeObject.tp_hash¶ An optional pointer to a function that implements the built-in function
hash().The signature is the same as for
PyObject_Hash(); it must return a Clong. The value-1should not be returned as a normal return value; when anerror occurs during the computation of the hash value, the function should setan exception and return-1.This field can be set explicitly to
PyObject_HashNotImplemented()toblock inheritance of the hash method from a parent type. This is interpretedas the equivalent of__hash__=Noneat the Python level, causingisinstance(o,collections.Hashable)to correctly returnFalse. Notethat the converse is also true - setting__hash__=Noneon a class atthe Python level will result in thetp_hashslot being set toPyObject_HashNotImplemented().When this field is not set, two possibilities exist: if the
tp_compareandtp_richcomparefields are bothNULL, a default hash value based onthe object’s address is returned; otherwise, aTypeErroris raised.This field is inherited by subtypes together with
tp_richcompareandtp_compare: a subtypes inherits all three oftp_compare,tp_richcompare, andtp_hash, when the subtype’stp_compare,tp_richcompareandtp_hashare allNULL.
- ternaryfunc
PyTypeObject.tp_call¶ An optional pointer to a function that implements calling the object. Thisshould beNULL if the object is not callable. The signature is the same asfor
PyObject_Call().This field is inherited by subtypes.
- reprfunc
PyTypeObject.tp_str¶ An optional pointer to a function that implements the built-in operation
str(). (Note thatstris a type now, andstr()calls theconstructor for that type. This constructor callsPyObject_Str()to dothe actual work, andPyObject_Str()will call this handler.)The signature is the same as for
PyObject_Str(); it must return a stringor a Unicode object. This function should return a “friendly” stringrepresentation of the object, as this is the representation that will be used bythe print statement.When this field is not set,
PyObject_Repr()is called to return a stringrepresentation.This field is inherited by subtypes.
- getattrofunc
PyTypeObject.tp_getattro¶ An optional pointer to the get-attribute function.
The signature is the same as for
PyObject_GetAttr(). It is usuallyconvenient to set this field toPyObject_GenericGetAttr(), whichimplements the normal way of looking for object attributes.This field is inherited by subtypes together with
tp_getattr: a subtypeinherits bothtp_getattrandtp_getattrofrom its base type whenthe subtype’stp_getattrandtp_getattroare bothNULL.
- setattrofunc
PyTypeObject.tp_setattro¶ An optional pointer to the function for setting and deleting attributes.
The signature is the same as for
PyObject_SetAttr(), but settingv toNULL to delete an attribute must be supported. It is usuallyconvenient to set this field toPyObject_GenericSetAttr(), whichimplements the normal way of setting object attributes.This field is inherited by subtypes together with
tp_setattr: a subtypeinherits bothtp_setattrandtp_setattrofrom its base type whenthe subtype’stp_setattrandtp_setattroare bothNULL.
- PyBufferProcs*
PyTypeObject.tp_as_buffer¶ Pointer to an additional structure that contains fields relevant only to objectswhich implement the buffer interface. These fields are documented inBuffer Object Structures.
The
tp_as_bufferfield is not inherited, but the contained fields areinherited individually.
- long
PyTypeObject.tp_flags¶ This field is a bit mask of various flags. Some flags indicate variantsemantics for certain situations; others are used to indicate that certainfields in the type object (or in the extension structures referenced via
tp_as_number,tp_as_sequence,tp_as_mapping, andtp_as_buffer) that were historically not always present are valid; ifsuch a flag bit is clear, the type fields it guards must not be accessed andmust be considered to have a zero orNULL value instead.Inheritance of this field is complicated. Most flag bits are inheritedindividually, i.e. if the base type has a flag bit set, the subtype inheritsthis flag bit. The flag bits that pertain to extension structures are strictlyinherited if the extension structure is inherited, i.e. the base type’s value ofthe flag bit is copied into the subtype together with a pointer to the extensionstructure. The
Py_TPFLAGS_HAVE_GCflag bit is inherited together withthetp_traverseandtp_clearfields, i.e. if thePy_TPFLAGS_HAVE_GCflag bit is clear in the subtype and thetp_traverseandtp_clearfields in the subtype exist (asindicated by thePy_TPFLAGS_HAVE_RICHCOMPAREflag bit) and haveNULLvalues.The following bit masks are currently defined; these can be ORed together usingthe
|operator to form the value of thetp_flagsfield. The macroPyType_HasFeature()takes a type and a flags value,tp andf, andchecks whethertp->tp_flags&fis non-zero.Py_TPFLAGS_HAVE_GETCHARBUFFER¶If this bit is set, the
PyBufferProcsstruct referenced bytp_as_bufferhas thebf_getcharbufferfield.
Py_TPFLAGS_HAVE_SEQUENCE_IN¶If this bit is set, the
PySequenceMethodsstruct referenced bytp_as_sequencehas thesq_containsfield.
Py_TPFLAGS_GC¶This bit is obsolete. The bit it used to name is no longer in use. The symbolis now defined as zero.
Py_TPFLAGS_HAVE_INPLACEOPS¶If this bit is set, the
PySequenceMethodsstruct referenced bytp_as_sequenceand thePyNumberMethodsstructure referenced bytp_as_numbercontain the fields for in-place operators. In particular,this means that thePyNumberMethodsstructure has the fieldsnb_inplace_add,nb_inplace_subtract,nb_inplace_multiply,nb_inplace_divide,nb_inplace_remainder,nb_inplace_power,nb_inplace_lshift,nb_inplace_rshift,nb_inplace_and,nb_inplace_xor, andnb_inplace_or; and thePySequenceMethodsstruct has the fieldssq_inplace_concatandsq_inplace_repeat.
Py_TPFLAGS_CHECKTYPES¶If this bit is set, the binary and ternary operations in the
PyNumberMethodsstructure referenced bytp_as_numberacceptarguments of arbitrary object types, and do their own type conversions ifneeded. If this bit is clear, those operations require that all arguments havethe current type as their type, and the caller is supposed to perform a coercionoperation first. This applies tonb_add,nb_subtract,nb_multiply,nb_divide,nb_remainder,nb_divmod,nb_power,nb_lshift,nb_rshift,nb_and,nb_xor, andnb_or.
Py_TPFLAGS_HAVE_RICHCOMPARE¶If this bit is set, the type object has the
tp_richcomparefield, aswell as thetp_traverseand thetp_clearfields.
Py_TPFLAGS_HAVE_WEAKREFS¶If this bit is set, the
tp_weaklistoffsetfield is defined. Instancesof a type are weakly referenceable if the type’stp_weaklistoffsetfieldhas a value greater than zero.
Py_TPFLAGS_HAVE_ITER¶If this bit is set, the type object has the
tp_iterandtp_iternextfields.
Py_TPFLAGS_HAVE_CLASS¶If this bit is set, the type object has several new fields defined starting inPython 2.2:
tp_methods,tp_members,tp_getset,tp_base,tp_dict,tp_descr_get,tp_descr_set,tp_dictoffset,tp_init,tp_alloc,tp_new,tp_free,tp_is_gc,tp_bases,tp_mro,tp_cache,tp_subclasses, andtp_weaklist.
Py_TPFLAGS_HEAPTYPE¶This bit is set when the type object itself is allocated on the heap. In thiscase, the
ob_typefield of its instances is considered a reference tothe type, and the type object is INCREF’ed when a new instance is created, andDECREF’ed when an instance is destroyed (this does not apply to instances ofsubtypes; only the type referenced by the instance’s ob_type gets INCREF’ed orDECREF’ed).
Py_TPFLAGS_BASETYPE¶This bit is set when the type can be used as the base type of another type. Ifthis bit is clear, the type cannot be subtyped (similar to a “final” class inJava).
Py_TPFLAGS_READY¶This bit is set when the type object has been fully initialized by
PyType_Ready().
Py_TPFLAGS_READYING¶This bit is set while
PyType_Ready()is in the process of initializingthe type object.
Py_TPFLAGS_HAVE_GC¶This bit is set when the object supports garbage collection. If this bitis set, instances must be created using
PyObject_GC_New()anddestroyed usingPyObject_GC_Del(). More information in sectionSupporting Cyclic Garbage Collection. This bit also implies that theGC-related fieldstp_traverseandtp_clearare present inthe type object; but those fields also exist whenPy_TPFLAGS_HAVE_GCis clear butPy_TPFLAGS_HAVE_RICHCOMPAREis set.
Py_TPFLAGS_DEFAULT¶This is a bitmask of all the bits that pertain to the existence of certainfields in the type object and its extension structures. Currently, it includesthe following bits:
Py_TPFLAGS_HAVE_GETCHARBUFFER,Py_TPFLAGS_HAVE_SEQUENCE_IN,Py_TPFLAGS_HAVE_INPLACEOPS,Py_TPFLAGS_HAVE_RICHCOMPARE,Py_TPFLAGS_HAVE_WEAKREFS,Py_TPFLAGS_HAVE_ITER, andPy_TPFLAGS_HAVE_CLASS.
- char*
PyTypeObject.tp_doc¶ An optional pointer to a NUL-terminated C string giving the docstring for thistype object. This is exposed as the
__doc__attribute on the type andinstances of the type.This field isnot inherited by subtypes.
The following three fields only exist if thePy_TPFLAGS_HAVE_RICHCOMPARE flag bit is set.
- traverseproc
PyTypeObject.tp_traverse¶ An optional pointer to a traversal function for the garbage collector. This isonly used if the
Py_TPFLAGS_HAVE_GCflag bit is set. More informationabout Python’s garbage collection scheme can be found in sectionSupporting Cyclic Garbage Collection.The
tp_traversepointer is used by the garbage collector to detectreference cycles. A typical implementation of atp_traversefunctionsimply callsPy_VISIT()on each of the instance’s members that are Pythonobjects. For example, this is functionlocal_traverse()from thethreadextension module:staticintlocal_traverse(localobject*self,visitprocvisit,void*arg){Py_VISIT(self->args);Py_VISIT(self->kw);Py_VISIT(self->dict);return0;}
Note that
Py_VISIT()is called only on those members that can participatein reference cycles. Although there is also aself->keymember, it can onlybeNULL or a Python string and therefore cannot be part of a reference cycle.On the other hand, even if you know a member can never be part of a cycle, as adebugging aid you may want to visit it anyway just so the
gcmodule’sget_referents()function will include it.Note that
Py_VISIT()requires thevisit andarg parameters tolocal_traverse()to have these specific names; don’t name them justanything.This field is inherited by subtypes together with
tp_clearand thePy_TPFLAGS_HAVE_GCflag bit: the flag bit,tp_traverse, andtp_clearare all inherited from the base type if they are all zero inthe subtypeand the subtype has thePy_TPFLAGS_HAVE_RICHCOMPAREflagbit set.
- inquiry
PyTypeObject.tp_clear¶ An optional pointer to a clear function for the garbage collector. This is onlyused if the
Py_TPFLAGS_HAVE_GCflag bit is set.The
tp_clearmember function is used to break reference cycles in cyclicgarbage detected by the garbage collector. Taken together, alltp_clearfunctions in the system must combine to break all reference cycles. This issubtle, and if in any doubt supply atp_clearfunction. For example,the tuple type does not implement atp_clearfunction, because it’spossible to prove that no reference cycle can be composed entirely of tuples.Therefore thetp_clearfunctions of other types must be sufficient tobreak any cycle containing a tuple. This isn’t immediately obvious, and there’srarely a good reason to avoid implementingtp_clear.Implementations of
tp_clearshould drop the instance’s references tothose of its members that may be Python objects, and set its pointers to thosemembers toNULL, as in the following example:staticintlocal_clear(localobject*self){Py_CLEAR(self->key);Py_CLEAR(self->args);Py_CLEAR(self->kw);Py_CLEAR(self->dict);return0;}
The
Py_CLEAR()macro should be used, because clearing references isdelicate: the reference to the contained object must not be decremented untilafter the pointer to the contained object is set toNULL. This is becausedecrementing the reference count may cause the contained object to become trash,triggering a chain of reclamation activity that may include invoking arbitraryPython code (due to finalizers, or weakref callbacks, associated with thecontained object). If it’s possible for such code to referenceself again,it’s important that the pointer to the contained object beNULL at that time,so thatself knows the contained object can no longer be used. ThePy_CLEAR()macro performs the operations in a safe order.Because the goal of
tp_clearfunctions is to break reference cycles,it’s not necessary to clear contained objects like Python strings or Pythonintegers, which can’t participate in reference cycles. On the other hand, it maybe convenient to clear all contained Python objects, and write the type’stp_deallocfunction to invoketp_clear.More information about Python’s garbage collection scheme can be found insectionSupporting Cyclic Garbage Collection.
This field is inherited by subtypes together with
tp_traverseand thePy_TPFLAGS_HAVE_GCflag bit: the flag bit,tp_traverse, andtp_clearare all inherited from the base type if they are all zero inthe subtypeand the subtype has thePy_TPFLAGS_HAVE_RICHCOMPAREflagbit set.
- richcmpfunc
PyTypeObject.tp_richcompare¶ An optional pointer to the rich comparison function, whose signature is
PyObject*tp_richcompare(PyObject*a,PyObject*b,intop).The function should return the result of the comparison (usually
Py_TrueorPy_False). If the comparison is undefined, it must returnPy_NotImplemented, if another error occurred it must returnNULLandset an exception condition.Note
If you want to implement a type for which only a limited set ofcomparisons makes sense (e.g.
==and!=, but not<andfriends), directly raiseTypeErrorin the rich comparison function.This field is inherited by subtypes together with
tp_compareandtp_hash: a subtype inherits all three oftp_compare,tp_richcompare, andtp_hash, when the subtype’stp_compare,tp_richcompare, andtp_hashare allNULL.The following constants are defined to be used as the third argument for
tp_richcompareand forPyObject_RichCompare():Constant
Comparison
Py_LT<Py_LE<=Py_EQ==Py_NE!=Py_GT>Py_GE>=
The next field only exists if thePy_TPFLAGS_HAVE_WEAKREFS flag bit isset.
- long
PyTypeObject.tp_weaklistoffset¶ If the instances of this type are weakly referenceable, this field is greaterthan zero and contains the offset in the instance structure of the weakreference list head (ignoring the GC header, if present); this offset is used by
PyObject_ClearWeakRefs()and thePyWeakref_*()functions. Theinstance structure needs to include a field of typePyObject*which isinitialized toNULL.Do not confuse this field with
tp_weaklist; that is the list head forweak references to the type object itself.This field is inherited by subtypes, but see the rules listed below. A subtypemay override this offset; this means that the subtype uses a different weakreference list head than the base type. Since the list head is always found via
tp_weaklistoffset, this should not be a problem.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 weaklyreferenceable by adding a weak reference list head slot to the instance layoutand setting thetp_weaklistoffsetof that slot’s offset.When a type’s
__slots__declaration contains a slot named__weakref__, that slot becomes the weak reference list head forinstances 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_weaklistoffsetfrom itsbase type.
The next two fields only exist if thePy_TPFLAGS_HAVE_ITER flag bit isset.
- getiterfunc
PyTypeObject.tp_iter¶ An optional pointer to a function that returns an iterator for the object. Itspresence normally signals that the instances of this type are iterable (althoughsequences may be iterable without this function, and classic instances alwayshave this function, even if they don’t define an
__iter__()method).This function has the same signature as
PyObject_GetIter().This field is inherited by subtypes.
- iternextfunc
PyTypeObject.tp_iternext¶ An optional pointer to a function that returns the next item in an iterator.When the iterator is exhausted, it must returnNULL; a
StopIterationexception may or may not be set. When another error occurs, it must returnNULL too. Its presence normally signals that the instances of this typeare iterators (although classic instances always have this function, even ifthey don’t define anext()method).Iterator types should also define the
tp_iterfunction, and thatfunction should return the iterator instance itself (not a new iteratorinstance).This function has the same signature as
PyIter_Next().This field is inherited by subtypes.
The next fields, up to and includingtp_weaklist, only exist if thePy_TPFLAGS_HAVE_CLASS flag bit is set.
- structPyMethodDef*
PyTypeObject.tp_methods¶ An optional pointer to a staticNULL-terminated array of
PyMethodDefstructures, declaring regular methods of this type.For each entry in the array, an entry is added to the type’s dictionary (see
tp_dictbelow) containing a method descriptor.This field is not inherited by subtypes (methods are inherited through adifferent mechanism).
- structPyMemberDef*
PyTypeObject.tp_members¶ An optional pointer to a staticNULL-terminated array of
PyMemberDefstructures, declaring regular data members (fields or slots) of instances ofthis type.For each entry in the array, an entry is added to the type’s dictionary (see
tp_dictbelow) containing a member descriptor.This field is not inherited by subtypes (members are inherited through adifferent mechanism).
- structPyGetSetDef*
PyTypeObject.tp_getset¶ An optional pointer to a staticNULL-terminated array of
PyGetSetDefstructures, declaring computed attributes of instances of this type.For each entry in the array, an entry is added to the type’s dictionary (see
tp_dictbelow) containing a getset descriptor.This field is not inherited by subtypes (computed attributes are inheritedthrough a different mechanism).
- PyTypeObject*
PyTypeObject.tp_base¶ An optional pointer to a base type from which type properties are inherited. Atthis level, only single inheritance is supported; multiple inheritance requiredynamically creating a type object by calling the metatype.
This field is not inherited by subtypes (obviously), but it defaults to
&PyBaseObject_Type(which to Python programmers is known as the typeobject).
- PyObject*
PyTypeObject.tp_dict¶ The type’s dictionary is stored here by
PyType_Ready().This field should normally be initialized toNULL before PyType_Ready iscalled; it may also be initialized to a dictionary containing initial attributesfor the type. Once
PyType_Ready()has initialized the type, extraattributes for the type may be added to this dictionary only if they don’tcorrespond to overloaded operations (like__add__()).This field is not inherited by subtypes (though the attributes defined in hereare inherited through a different mechanism).
- descrgetfunc
PyTypeObject.tp_descr_get¶ An optional pointer to a “descriptor get” function.
The function signature is
PyObject*tp_descr_get(PyObject*self,PyObject*obj,PyObject*type);
This field is inherited by subtypes.
- descrsetfunc
PyTypeObject.tp_descr_set¶ An optional pointer to a function for setting and deletinga descriptor’s value.
The function signature is
inttp_descr_set(PyObject*self,PyObject*obj,PyObject*value);
Thevalue argument is set toNULL to delete the value.This field is inherited by subtypes.
- long
PyTypeObject.tp_dictoffset¶ If the instances of this type have a dictionary containing instance variables,this field is non-zero and contains the offset in the instances of the type ofthe instance variable dictionary; this offset is used by
PyObject_GenericGetAttr().Do not confuse this field with
tp_dict; that is the dictionary forattributes of the type object itself.If the value of this field is greater than zero, it specifies the offset fromthe start of the instance structure. If the value is less than zero, itspecifies the offset from theend of the instance structure. A negativeoffset is more expensive to use, and should only be used when the instancestructure contains a variable-length part. This is used for example to add aninstance variable dictionary to subtypes of
strortuple. Notethat thetp_basicsizefield should account for the dictionary added tothe end in that case, even though the dictionary is not included in the basicobject layout. On a system with a pointer size of 4 bytes,tp_dictoffsetshould be set to-4to indicate that the dictionary isat the very end of the structure.The real dictionary offset in an instance can be computed from a negative
tp_dictoffsetas follows:dictoffset=tp_basicsize+abs(ob_size)*tp_itemsize+tp_dictoffsetifdictoffsetisnotalignedonsizeof(void*):rounduptosizeof(void*)
where
tp_basicsize,tp_itemsizeandtp_dictoffsetaretaken from the type object, andob_sizeis taken from the instance. Theabsolute value is taken because long ints use the sign ofob_sizetostore the sign of the number. (There’s never a need to do this calculationyourself; it is done for you by_PyObject_GetDictPtr().)This field is inherited by subtypes, but see the rules listed below. A subtypemay override this offset; this means that the subtype instances store thedictionary at a difference offset than the base type. Since the dictionary isalways 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 dictionaryslot is added to the instance layout and thetp_dictoffsetis set tothat slot’s offset.When a type defined by a class statement has a
__slots__declaration,the type inherits itstp_dictoffsetfrom its base type.(Adding a slot named
__dict__to the__slots__declaration doesnot have the expected effect, it just causes confusion. Maybe this should beadded as a feature just like__weakref__though.)
- initproc
PyTypeObject.tp_init¶ An optional pointer to an instance initialization function.
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.The function signature is
inttp_init(PyObject*self,PyObject*args,PyObject*kwds)
The self argument is the instance to be initialized; theargs andkwdsarguments represent positional and keyword arguments of the call to
__init__().The
tp_initfunction, if notNULL, is called when an instance iscreated normally by calling its type, after the type’stp_newfunctionhas returned an instance of the type. If thetp_newfunction returns aninstance of some other type that is not a subtype of the original type, notp_initfunction is called; iftp_newreturns an instance of asubtype of the original type, the subtype’stp_initis called. (VERSIONNOTE: described here is what is implemented in Python 2.2.1 and later. InPython 2.2, thetp_initof the type of the object returned bytp_newwas always called, if notNULL.)This field is inherited by subtypes.
- allocfunc
PyTypeObject.tp_alloc¶ An optional pointer to an instance allocation function.
The function signature is
PyObject*tp_alloc(PyTypeObject*self,Py_ssize_tnitems)
The purpose of this function is to separate memory allocation from memoryinitialization. It should return a pointer to a block of memory of adequatelength for the instance, suitably aligned, and initialized to zeros, but with
ob_refcntset to1andob_typeset to the type argument. Ifthe type’stp_itemsizeis non-zero, the object’sob_sizefieldshould be initialized tonitems and the length of the allocated memory blockshould betp_basicsize+nitems*tp_itemsize, rounded up to a multiple ofsizeof(void*); otherwise,nitems is not used and the length of the blockshould betp_basicsize.Do not use this function to do any other instance initialization, not even toallocate additional memory; that should be done by
tp_new.This field is inherited by static subtypes, but not by dynamic subtypes(subtypes created by a class statement); in the latter, this field is always setto
PyType_GenericAlloc(), to force a standard heap allocation strategy.That is also the recommended value for statically defined types.
- newfunc
PyTypeObject.tp_new¶ An optional pointer to an instance creation function.
If this function isNULL for a particular type, that type cannot be called tocreate new instances; presumably there is some other way to create instances,like a factory function.
The function signature is
PyObject*tp_new(PyTypeObject*subtype,PyObject*args,PyObject*kwds)
The subtype argument is the type of the object being created; theargs andkwds arguments represent positional and keyword arguments of the call to thetype. Note that subtype doesn’t have to equal the type whose
tp_newfunction is called; it may be a subtype of that type (but not an unrelatedtype).The
tp_newfunction should callsubtype->tp_alloc(subtype,nitems)to allocate space for the object, and then do only as much furtherinitialization as is absolutely necessary. Initialization that can safely beignored or repeated should be placed in thetp_inithandler. A goodrule of thumb is that for immutable types, all initialization should take placeintp_new, while for mutable types, most initialization should bedeferred totp_init.This field is inherited by subtypes, except it is not inherited by static typeswhose
tp_baseisNULL or&PyBaseObject_Type. The latter exceptionis a precaution so that old extension types don’t become callable simply bybeing linked with Python 2.2.
- destructor
PyTypeObject.tp_free¶ An optional pointer to an instance deallocation function.
The signature of this function has changed slightly: in Python 2.2 and 2.2.1,its signature is
destructor:voidtp_free(PyObject*)
In Python 2.3 and beyond, its signature is
freefunc:voidtp_free(void*)
The only initializer that is compatible with both versions is
_PyObject_Del,whose definition has suitably adapted in Python 2.3.This field is inherited by static subtypes, but not by dynamic subtypes(subtypes created by a class statement); in the latter, this field is set to adeallocator suitable to match
PyType_GenericAlloc()and the value of thePy_TPFLAGS_HAVE_GCflag bit.
- inquiry
PyTypeObject.tp_is_gc¶ An optional pointer to a function called by the garbage collector.
The garbage collector needs to know whether a particular object is collectibleor not. Normally, it is sufficient to look at the object’s type’s
tp_flagsfield, and check thePy_TPFLAGS_HAVE_GCflag bit. Butsome types have a mixture of statically and dynamically allocated instances, andthe statically allocated instances are not collectible. Such types shoulddefine this function; it should return1for a collectible instance, and0for a non-collectible instance. The signature isinttp_is_gc(PyObject*self)
(The only example of this are types themselves. The metatype,
PyType_Type, defines this function to distinguish between staticallyand dynamically allocated types.)This field is inherited by subtypes. (VERSION NOTE: in Python 2.2, it was notinherited. It is inherited in 2.2.1 and later versions.)
- PyObject*
PyTypeObject.tp_bases¶ Tuple of base types.
This is set for types created by a class statement. It should beNULL forstatically defined types.
This field is not inherited.
- PyObject*
PyTypeObject.tp_mro¶ Tuple containing the expanded set of base types, starting with the type itselfand ending with
object, in Method Resolution Order.This field is not inherited; it is calculated fresh by
PyType_Ready().
- PyObject*
PyTypeObject.tp_subclasses¶ List of weak references to subclasses. Not inherited. Internal use only.
- PyObject*
PyTypeObject.tp_weaklist¶ Weak reference list head, for weak references to this type object. Notinherited. Internal use only.
The remaining fields are only defined if the feature test macroCOUNT_ALLOCS is defined, and are for internal use only. They aredocumented here for completeness. None of these fields are inherited bysubtypes. See thePYTHONSHOWALLOCCOUNT environment variable.
- Py_ssize_t
PyTypeObject.tp_allocs¶ Number of allocations.
- Py_ssize_t
PyTypeObject.tp_frees¶ Number of frees.
- Py_ssize_t
PyTypeObject.tp_maxalloc¶ Maximum simultaneously allocated objects.
- PyTypeObject*
PyTypeObject.tp_next¶ Pointer to the next type object with a non-zero
tp_allocsfield.
Also, note that, in a garbage collected Python, tp_dealloc may be called fromany Python thread, not just the thread which created the object (if the objectbecomes part of a refcount cycle, that cycle might be collected by a garbagecollection on any thread). This is not a problem for Python API calls, sincethe thread on which tp_dealloc is called will own the Global Interpreter Lock(GIL). However, if the object being destroyed in turn destroys objects from someother C or C++ library, care should be taken to ensure that destroying thoseobjects on the thread which called tp_dealloc will not violate any assumptionsof the library.
Number Object Structures¶
PyNumberMethods¶This structure holds pointers to the functions which an object uses toimplement the number protocol. Almost every function below is used by thefunction of similar name documented in theNumber Protocol section.
Here is the structure definition:
typedefstruct{binaryfuncnb_add;binaryfuncnb_subtract;binaryfuncnb_multiply;binaryfuncnb_divide;binaryfuncnb_remainder;binaryfuncnb_divmod;ternaryfuncnb_power;unaryfuncnb_negative;unaryfuncnb_positive;unaryfuncnb_absolute;inquirynb_nonzero;/* Used by PyObject_IsTrue */unaryfuncnb_invert;binaryfuncnb_lshift;binaryfuncnb_rshift;binaryfuncnb_and;binaryfuncnb_xor;binaryfuncnb_or;coercionnb_coerce;/* Used by the coerce() function */unaryfuncnb_int;unaryfuncnb_long;unaryfuncnb_float;unaryfuncnb_oct;unaryfuncnb_hex;/* Added in release 2.0 */binaryfuncnb_inplace_add;binaryfuncnb_inplace_subtract;binaryfuncnb_inplace_multiply;binaryfuncnb_inplace_divide;binaryfuncnb_inplace_remainder;ternaryfuncnb_inplace_power;binaryfuncnb_inplace_lshift;binaryfuncnb_inplace_rshift;binaryfuncnb_inplace_and;binaryfuncnb_inplace_xor;binaryfuncnb_inplace_or;/* Added in release 2.2 */binaryfuncnb_floor_divide;binaryfuncnb_true_divide;binaryfuncnb_inplace_floor_divide;binaryfuncnb_inplace_true_divide;/* Added in release 2.5 */unaryfuncnb_index;}PyNumberMethods;
Binary and ternary functions may receive different kinds of arguments, dependingon the flag bitPy_TPFLAGS_CHECKTYPES:
If
Py_TPFLAGS_CHECKTYPESis not set, the function arguments areguaranteed to be of the object’s type; the caller is responsible for callingthe coercion method specified by thenb_coercemember to convert thearguments:- coercion
PyNumberMethods.nb_coerce¶ This function is used by
PyNumber_CoerceEx()and has the samesignature. The first argument is always a pointer to an object of thedefined type. If the conversion to a common “larger” type is possible, thefunction replaces the pointers with new references to the converted objectsand returns0. If the conversion is not possible, the function returns1. If an error condition is set, it will return-1.
- coercion
If the
Py_TPFLAGS_CHECKTYPESflag is set, binary and ternaryfunctions must check the type of all their operands, and implement thenecessary conversions (at least one of the operands is an instance of thedefined type). This is the recommended way; with Python 3 coercion willdisappear completely.
If the operation is not defined for the given operands, binary and ternaryfunctions must returnPy_NotImplemented, if another error occurred they mustreturnNULL and set an exception.
Mapping Object Structures¶
PyMappingMethods¶This structure holds pointers to the functions which an object uses toimplement the mapping protocol. It has three members:
- lenfunc
PyMappingMethods.mp_length¶ This function is used by
PyMapping_Length()andPyObject_Size(), and has the same signature. This slot may be set toNULL if the object has no defined length.
- binaryfunc
PyMappingMethods.mp_subscript¶ This function is used by
PyObject_GetItem()and has the samesignature. This slot must be filled for thePyMapping_Check()function to return1, it can beNULL otherwise.
- objobjargproc
PyMappingMethods.mp_ass_subscript¶ This function is used by
PyObject_SetItem()andPyObject_DelItem(). It has the same signature asPyObject_SetItem(), butv can also be set toNULL to deletean item. If this slot isNULL, the object does not support itemassignment and deletion.
Sequence Object Structures¶
PySequenceMethods¶This structure holds pointers to the functions which an object uses toimplement the sequence protocol.
- lenfunc
PySequenceMethods.sq_length¶ This function is used by
PySequence_Size()andPyObject_Size(),and has the same signature.
- binaryfunc
PySequenceMethods.sq_concat¶ This function is used by
PySequence_Concat()and has the samesignature. It is also used by the+operator, after trying the numericaddition via thenb_addslot.
- ssizeargfunc
PySequenceMethods.sq_repeat¶ This function is used by
PySequence_Repeat()and has the samesignature. It is also used by the*operator, after trying numericmultiplication via thenb_multiplyslot.
- ssizeargfunc
PySequenceMethods.sq_item¶ This function is used by
PySequence_GetItem()and has the samesignature. This slot must be filled for thePySequence_Check()function to return1, it can beNULL otherwise.Negative indexes are handled as follows: if the
sq_lengthslot isfilled, it is called and the sequence length is used to compute a positiveindex which is passed tosq_item. Ifsq_lengthisNULL,the index is passed as is to the function.
- ssizeobjargproc
PySequenceMethods.sq_ass_item¶ This function is used by
PySequence_SetItem()and has the samesignature. This slot may be left toNULL if the object does not supportitem assignment and deletion.
- objobjproc
PySequenceMethods.sq_contains¶ This function may be used by
PySequence_Contains()and has the samesignature. This slot may be left toNULL, in this casePySequence_Contains()simply traverses the sequence until it finds amatch.
- binaryfunc
PySequenceMethods.sq_inplace_concat¶ This function is used by
PySequence_InPlaceConcat()and has the samesignature. It should modify its first operand, and return it.
- ssizeargfunc
PySequenceMethods.sq_inplace_repeat¶ This function is used by
PySequence_InPlaceRepeat()and has the samesignature. It should modify its first operand, and return it.
Buffer Object Structures¶
The buffer interface exports a model where an object can expose its internaldata as a set of chunks of data, where each chunk is specified as apointer/length pair. These chunks are calledsegments and are presumedto be non-contiguous in memory.
If an object does not export the buffer interface, then itstp_as_buffermember in thePyTypeObject structure should beNULL. Otherwise, thetp_as_buffer will point to aPyBufferProcs structure.
Note
It is very important that yourPyTypeObject structure usesPy_TPFLAGS_DEFAULT for the value of thetp_flags member ratherthan0. This tells the Python runtime that yourPyBufferProcsstructure contains thebf_getcharbuffer slot. Older versions of Pythondid not have this member, so a new Python interpreter using an old extensionneeds to be able to test for its presence before using it.
PyBufferProcs¶Structure used to hold the function pointers which define an implementation ofthe buffer protocol.
The first slot is
bf_getreadbuffer, of typereadbufferproc.If this slot isNULL, then the object does not support reading from theinternal data. This is non-sensical, so implementors should fill this in, butcallers should test that the slot contains a non-NULL value.The next slot is
bf_getwritebufferhaving typewritebufferproc. This slot may beNULL if the object does notallow writing into its returned buffers.The third slot is
bf_getsegcount, with typesegcountproc.This slot must not beNULL and is used to inform the caller how many segmentsthe object contains. Simple objects such asPyString_TypeandPyBuffer_Typeobjects contain a single segment.The last slot is
bf_getcharbuffer, of typecharbufferproc.This slot will only be present if thePy_TPFLAGS_HAVE_GETCHARBUFFERflag is present in thetp_flagsfield of the object’sPyTypeObject. Before using this slot, the caller should test whether itis present by using thePyType_HasFeature()function. If the flag ispresent,bf_getcharbuffermay beNULL, indicating that the object’scontents cannot be used as8-bit characters. The slot function may also raisean error if the object’s contents cannot be interpreted as 8-bit characters.For example, if the object is an array which is configured to hold floatingpoint values, an exception may be raised if a caller attempts to usebf_getcharbufferto fetch a sequence of 8-bit characters. This notion ofexporting the internal buffers as “text” is used to distinguish between objectsthat are binary in nature, and those which have character-based content.Note
The current policy seems to state that these characters may be multi-bytecharacters. This implies that a buffer size ofN does not mean there areNcharacters present.
Py_TPFLAGS_HAVE_GETCHARBUFFERFlag bit set in the type structure to indicate that the
bf_getcharbufferslot is known. This being set does not indicate that the object supports thebuffer interface or that thebf_getcharbufferslot is non-NULL.
- Py_ssize_t
(*readbufferproc)(PyObject *self, Py_ssize_t segment, void **ptrptr)¶ Return a pointer to a readable segment of the buffer in
*ptrptr. Thisfunction is allowed to raise an exception, in which case it must return-1.Thesegment which is specified must be zero or positive, and strictly lessthan the number of segments returned by thebf_getsegcountslotfunction. On success, it returns the length of the segment, and sets*ptrptrto a pointer to that memory.
- Py_ssize_t
(*writebufferproc)(PyObject *self, Py_ssize_t segment, void **ptrptr)¶ Return a pointer to a writable memory buffer in
*ptrptr, and the length ofthat segment as the function return value. The memory buffer must correspond tobuffer segmentsegment. Must return-1and set an exception on error.TypeErrorshould be raised if the object only supports read-only buffers,andSystemErrorshould be raised whensegment specifies a segment thatdoesn’t exist.
