Issue #7042: Use a better mechanism for testing timers in test_signal.
[python.git] / Doc / c-api / type.rst
blob7d1c773ca191e779e103cc9f71b586edd0117900
1 .. highlightlang:: c
3 .. _typeobjects:
5 Type Objects
6 ------------
8 .. index:: object: type
11 .. ctype:: PyTypeObject
13    The C structure of the objects used to describe built-in types.
16 .. cvar:: PyObject* PyType_Type
18    .. index:: single: TypeType (in module types)
20    This is the type object for type objects; it is the same object as ``type`` and
21    ``types.TypeType`` in the Python layer.
24 .. cfunction:: int PyType_Check(PyObject *o)
26    Return true if the object *o* is a type object, including instances of types
27    derived from the standard type object.  Return false in all other cases.
30 .. cfunction:: int PyType_CheckExact(PyObject *o)
32    Return true if the object *o* is a type object, but not a subtype of the
33    standard type object.  Return false in all other cases.
35    .. versionadded:: 2.2
38 .. cfunction:: unsigned int PyType_ClearCache()
40    Clear the internal lookup cache. Return the current version tag.
42    .. versionadded:: 2.6
45 .. cfunction:: void PyType_Modified(PyTypeObject *type)
47    Invalidate the internal lookup cache for the type and all of its
48    subtypes.  This function must be called after any manual
49    modification of the attributes or base classes of the type.
51    .. versionadded:: 2.6
54 .. cfunction:: int PyType_HasFeature(PyObject *o, int feature)
56    Return true if the type object *o* sets the feature *feature*.  Type features
57    are denoted by single bit flags.
60 .. cfunction:: int PyType_IS_GC(PyObject *o)
62    Return true if the type object includes support for the cycle detector; this
63    tests the type flag :const:`Py_TPFLAGS_HAVE_GC`.
65    .. versionadded:: 2.0
68 .. cfunction:: int PyType_IsSubtype(PyTypeObject *a, PyTypeObject *b)
70    Return true if *a* is a subtype of *b*.
72    .. versionadded:: 2.2
75 .. cfunction:: PyObject* PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)
77    .. versionadded:: 2.2
79    .. versionchanged:: 2.5
80       This function used an :ctype:`int` type for *nitems*. This might require
81       changes in your code for properly supporting 64-bit systems.
84 .. cfunction:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
86    .. versionadded:: 2.2
89 .. cfunction:: int PyType_Ready(PyTypeObject *type)
91    Finalize a type object.  This should be called on all type objects to finish
92    their initialization.  This function is responsible for adding inherited slots
93    from a type's base class.  Return ``0`` on success, or return ``-1`` and sets an
94    exception on error.
96    .. versionadded:: 2.2