2019-05-17 09:55:34 +00:00
|
|
|
.. highlight:: c
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
.. _typeobjects:
|
|
|
|
|
|
|
|
Type Objects
|
|
|
|
------------
|
|
|
|
|
|
|
|
.. index:: object: type
|
|
|
|
|
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:type:: PyTypeObject
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
The C structure of the objects used to describe built-in types.
|
|
|
|
|
|
|
|
|
2021-08-03 17:21:25 +00:00
|
|
|
.. c:var:: PyTypeObject PyType_Type
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2010-10-17 10:59:41 +00:00
|
|
|
This is the type object for type objects; it is the same object as
|
|
|
|
:class:`type` in the Python layer.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: int PyType_Check(PyObject *o)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2020-02-05 13:24:17 +00:00
|
|
|
Return non-zero if the object *o* is a type object, including instances of
|
|
|
|
types derived from the standard type object. Return 0 in all other cases.
|
2021-01-06 11:38:26 +00:00
|
|
|
This function always succeeds.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: int PyType_CheckExact(PyObject *o)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2021-01-06 11:38:26 +00:00
|
|
|
Return non-zero if the object *o* is a type object, but not a subtype of
|
|
|
|
the standard type object. Return 0 in all other cases. This function
|
|
|
|
always succeeds.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2008-01-27 23:50:43 +00:00
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: unsigned int PyType_ClearCache()
|
2008-01-27 23:50:43 +00:00
|
|
|
|
Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63724 | gregory.p.smith | 2008-05-26 22:22:14 +0200 (Mon, 26 May 2008) | 6 lines
Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until
the last reference to the Popen instance was dropped. Adding explicit
close() calls fixes it.
Candidate for backport to release25-maint.
........
r63726 | benjamin.peterson | 2008-05-26 22:43:24 +0200 (Mon, 26 May 2008) | 2 lines
fix minor grammar typo
........
r63732 | benjamin.peterson | 2008-05-26 23:44:26 +0200 (Mon, 26 May 2008) | 2 lines
remove duplication in test module
........
r63744 | lars.gustaebel | 2008-05-27 14:39:23 +0200 (Tue, 27 May 2008) | 3 lines
Do not close external file objects passed to tarfile.open(mode='w:bz2')
when the TarFile is closed.
........
r63754 | benjamin.peterson | 2008-05-28 03:12:35 +0200 (Wed, 28 May 2008) | 2 lines
update tutorial function with more appropiate one from Eric Smith
........
r63755 | mark.hammond | 2008-05-28 03:54:55 +0200 (Wed, 28 May 2008) | 2 lines
bdist_wininst now works correctly when both --skip-build and --plat-name are specified.
........
r63757 | georg.brandl | 2008-05-28 13:21:39 +0200 (Wed, 28 May 2008) | 2 lines
#2989: add PyType_Modified().
........
r63758 | benjamin.peterson | 2008-05-28 13:51:41 +0200 (Wed, 28 May 2008) | 2 lines
fix spelling
........
r63760 | georg.brandl | 2008-05-28 17:41:36 +0200 (Wed, 28 May 2008) | 2 lines
#2990: prevent inconsistent state while updating method cache.
........
r63775 | georg.brandl | 2008-05-29 09:18:17 +0200 (Thu, 29 May 2008) | 2 lines
Two fixes in bytearray docs.
........
r63781 | georg.brandl | 2008-05-29 09:38:37 +0200 (Thu, 29 May 2008) | 2 lines
#2988: add note about catching CookieError when parsing untrusted cookie data.
........
r63782 | georg.brandl | 2008-05-29 09:45:26 +0200 (Thu, 29 May 2008) | 2 lines
#2985: allow i8 in XMLRPC responses.
........
r63787 | georg.brandl | 2008-05-29 16:35:39 +0200 (Thu, 29 May 2008) | 2 lines
Revert #2990 patch; it's not necessary as Armin showed.
........
r63805 | raymond.hettinger | 2008-05-30 08:37:27 +0200 (Fri, 30 May 2008) | 1 line
Issue 2784: fix leaks in exception exit.
........
r63806 | raymond.hettinger | 2008-05-30 08:49:47 +0200 (Fri, 30 May 2008) | 1 line
Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics what was done to dictionaries in r59223.
........
r63807 | raymond.hettinger | 2008-05-30 09:16:53 +0200 (Fri, 30 May 2008) | 1 line
Issue 2903: Add __name__ in globals for namedtuple namespace.
........
r63808 | georg.brandl | 2008-05-30 09:54:16 +0200 (Fri, 30 May 2008) | 2 lines
#2999: fix name of third parameter in unicode.replace()'s docstring.
........
r63818 | georg.brandl | 2008-05-30 21:12:13 +0200 (Fri, 30 May 2008) | 2 lines
getloadavg() is not available on Windows.
........
r63819 | georg.brandl | 2008-05-30 21:17:29 +0200 (Fri, 30 May 2008) | 2 lines
Better quote with single quotes.
........
r63823 | benjamin.peterson | 2008-05-30 22:44:39 +0200 (Fri, 30 May 2008) | 2 lines
fix grammar
........
r63824 | marc-andre.lemburg | 2008-05-30 22:52:18 +0200 (Fri, 30 May 2008) | 5 lines
Update the locale module alias table.
Closes #3011.
........
2008-06-10 16:57:31 +00:00
|
|
|
Clear the internal lookup cache. Return the current version tag.
|
|
|
|
|
2018-11-29 09:11:36 +00:00
|
|
|
.. c:function:: unsigned long PyType_GetFlags(PyTypeObject* type)
|
2011-02-05 20:35:29 +00:00
|
|
|
|
2013-08-01 19:12:45 +00:00
|
|
|
Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This function is primarily
|
2011-02-05 20:35:29 +00:00
|
|
|
meant for use with `Py_LIMITED_API`; the individual flag bits are
|
|
|
|
guaranteed to be stable across Python releases, but access to
|
2013-08-01 19:12:45 +00:00
|
|
|
:c:member:`~PyTypeObject.tp_flags` itself is not part of the limited API.
|
2011-02-05 20:35:29 +00:00
|
|
|
|
|
|
|
.. versionadded:: 3.2
|
Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63724 | gregory.p.smith | 2008-05-26 22:22:14 +0200 (Mon, 26 May 2008) | 6 lines
Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until
the last reference to the Popen instance was dropped. Adding explicit
close() calls fixes it.
Candidate for backport to release25-maint.
........
r63726 | benjamin.peterson | 2008-05-26 22:43:24 +0200 (Mon, 26 May 2008) | 2 lines
fix minor grammar typo
........
r63732 | benjamin.peterson | 2008-05-26 23:44:26 +0200 (Mon, 26 May 2008) | 2 lines
remove duplication in test module
........
r63744 | lars.gustaebel | 2008-05-27 14:39:23 +0200 (Tue, 27 May 2008) | 3 lines
Do not close external file objects passed to tarfile.open(mode='w:bz2')
when the TarFile is closed.
........
r63754 | benjamin.peterson | 2008-05-28 03:12:35 +0200 (Wed, 28 May 2008) | 2 lines
update tutorial function with more appropiate one from Eric Smith
........
r63755 | mark.hammond | 2008-05-28 03:54:55 +0200 (Wed, 28 May 2008) | 2 lines
bdist_wininst now works correctly when both --skip-build and --plat-name are specified.
........
r63757 | georg.brandl | 2008-05-28 13:21:39 +0200 (Wed, 28 May 2008) | 2 lines
#2989: add PyType_Modified().
........
r63758 | benjamin.peterson | 2008-05-28 13:51:41 +0200 (Wed, 28 May 2008) | 2 lines
fix spelling
........
r63760 | georg.brandl | 2008-05-28 17:41:36 +0200 (Wed, 28 May 2008) | 2 lines
#2990: prevent inconsistent state while updating method cache.
........
r63775 | georg.brandl | 2008-05-29 09:18:17 +0200 (Thu, 29 May 2008) | 2 lines
Two fixes in bytearray docs.
........
r63781 | georg.brandl | 2008-05-29 09:38:37 +0200 (Thu, 29 May 2008) | 2 lines
#2988: add note about catching CookieError when parsing untrusted cookie data.
........
r63782 | georg.brandl | 2008-05-29 09:45:26 +0200 (Thu, 29 May 2008) | 2 lines
#2985: allow i8 in XMLRPC responses.
........
r63787 | georg.brandl | 2008-05-29 16:35:39 +0200 (Thu, 29 May 2008) | 2 lines
Revert #2990 patch; it's not necessary as Armin showed.
........
r63805 | raymond.hettinger | 2008-05-30 08:37:27 +0200 (Fri, 30 May 2008) | 1 line
Issue 2784: fix leaks in exception exit.
........
r63806 | raymond.hettinger | 2008-05-30 08:49:47 +0200 (Fri, 30 May 2008) | 1 line
Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics what was done to dictionaries in r59223.
........
r63807 | raymond.hettinger | 2008-05-30 09:16:53 +0200 (Fri, 30 May 2008) | 1 line
Issue 2903: Add __name__ in globals for namedtuple namespace.
........
r63808 | georg.brandl | 2008-05-30 09:54:16 +0200 (Fri, 30 May 2008) | 2 lines
#2999: fix name of third parameter in unicode.replace()'s docstring.
........
r63818 | georg.brandl | 2008-05-30 21:12:13 +0200 (Fri, 30 May 2008) | 2 lines
getloadavg() is not available on Windows.
........
r63819 | georg.brandl | 2008-05-30 21:17:29 +0200 (Fri, 30 May 2008) | 2 lines
Better quote with single quotes.
........
r63823 | benjamin.peterson | 2008-05-30 22:44:39 +0200 (Fri, 30 May 2008) | 2 lines
fix grammar
........
r63824 | marc-andre.lemburg | 2008-05-30 22:52:18 +0200 (Fri, 30 May 2008) | 5 lines
Update the locale module alias table.
Closes #3011.
........
2008-06-10 16:57:31 +00:00
|
|
|
|
2018-11-29 09:11:36 +00:00
|
|
|
.. versionchanged:: 3.4
|
|
|
|
The return type is now ``unsigned long`` rather than ``long``.
|
|
|
|
|
2014-10-06 12:15:06 +00:00
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: void PyType_Modified(PyTypeObject *type)
|
Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63724 | gregory.p.smith | 2008-05-26 22:22:14 +0200 (Mon, 26 May 2008) | 6 lines
Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until
the last reference to the Popen instance was dropped. Adding explicit
close() calls fixes it.
Candidate for backport to release25-maint.
........
r63726 | benjamin.peterson | 2008-05-26 22:43:24 +0200 (Mon, 26 May 2008) | 2 lines
fix minor grammar typo
........
r63732 | benjamin.peterson | 2008-05-26 23:44:26 +0200 (Mon, 26 May 2008) | 2 lines
remove duplication in test module
........
r63744 | lars.gustaebel | 2008-05-27 14:39:23 +0200 (Tue, 27 May 2008) | 3 lines
Do not close external file objects passed to tarfile.open(mode='w:bz2')
when the TarFile is closed.
........
r63754 | benjamin.peterson | 2008-05-28 03:12:35 +0200 (Wed, 28 May 2008) | 2 lines
update tutorial function with more appropiate one from Eric Smith
........
r63755 | mark.hammond | 2008-05-28 03:54:55 +0200 (Wed, 28 May 2008) | 2 lines
bdist_wininst now works correctly when both --skip-build and --plat-name are specified.
........
r63757 | georg.brandl | 2008-05-28 13:21:39 +0200 (Wed, 28 May 2008) | 2 lines
#2989: add PyType_Modified().
........
r63758 | benjamin.peterson | 2008-05-28 13:51:41 +0200 (Wed, 28 May 2008) | 2 lines
fix spelling
........
r63760 | georg.brandl | 2008-05-28 17:41:36 +0200 (Wed, 28 May 2008) | 2 lines
#2990: prevent inconsistent state while updating method cache.
........
r63775 | georg.brandl | 2008-05-29 09:18:17 +0200 (Thu, 29 May 2008) | 2 lines
Two fixes in bytearray docs.
........
r63781 | georg.brandl | 2008-05-29 09:38:37 +0200 (Thu, 29 May 2008) | 2 lines
#2988: add note about catching CookieError when parsing untrusted cookie data.
........
r63782 | georg.brandl | 2008-05-29 09:45:26 +0200 (Thu, 29 May 2008) | 2 lines
#2985: allow i8 in XMLRPC responses.
........
r63787 | georg.brandl | 2008-05-29 16:35:39 +0200 (Thu, 29 May 2008) | 2 lines
Revert #2990 patch; it's not necessary as Armin showed.
........
r63805 | raymond.hettinger | 2008-05-30 08:37:27 +0200 (Fri, 30 May 2008) | 1 line
Issue 2784: fix leaks in exception exit.
........
r63806 | raymond.hettinger | 2008-05-30 08:49:47 +0200 (Fri, 30 May 2008) | 1 line
Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics what was done to dictionaries in r59223.
........
r63807 | raymond.hettinger | 2008-05-30 09:16:53 +0200 (Fri, 30 May 2008) | 1 line
Issue 2903: Add __name__ in globals for namedtuple namespace.
........
r63808 | georg.brandl | 2008-05-30 09:54:16 +0200 (Fri, 30 May 2008) | 2 lines
#2999: fix name of third parameter in unicode.replace()'s docstring.
........
r63818 | georg.brandl | 2008-05-30 21:12:13 +0200 (Fri, 30 May 2008) | 2 lines
getloadavg() is not available on Windows.
........
r63819 | georg.brandl | 2008-05-30 21:17:29 +0200 (Fri, 30 May 2008) | 2 lines
Better quote with single quotes.
........
r63823 | benjamin.peterson | 2008-05-30 22:44:39 +0200 (Fri, 30 May 2008) | 2 lines
fix grammar
........
r63824 | marc-andre.lemburg | 2008-05-30 22:52:18 +0200 (Fri, 30 May 2008) | 5 lines
Update the locale module alias table.
Closes #3011.
........
2008-06-10 16:57:31 +00:00
|
|
|
|
|
|
|
Invalidate the internal lookup cache for the type and all of its
|
|
|
|
subtypes. This function must be called after any manual
|
|
|
|
modification of the attributes or base classes of the type.
|
2008-01-27 23:50:43 +00:00
|
|
|
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2012-06-03 05:07:47 +00:00
|
|
|
.. c:function:: int PyType_HasFeature(PyTypeObject *o, int feature)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2020-02-05 13:24:17 +00:00
|
|
|
Return non-zero if the type object *o* sets the feature *feature*.
|
|
|
|
Type features are denoted by single bit flags.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
|
2012-06-03 05:07:47 +00:00
|
|
|
.. c:function:: int PyType_IS_GC(PyTypeObject *o)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
Return true if the type object includes support for the cycle detector; this
|
|
|
|
tests the type flag :const:`Py_TPFLAGS_HAVE_GC`.
|
|
|
|
|
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: int PyType_IsSubtype(PyTypeObject *a, PyTypeObject *b)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
Return true if *a* is a subtype of *b*.
|
|
|
|
|
2014-10-06 12:15:06 +00:00
|
|
|
This function only checks for actual subtypes, which means that
|
2014-10-06 12:38:53 +00:00
|
|
|
:meth:`~class.__subclasscheck__` is not called on *b*. Call
|
2014-10-06 12:15:06 +00:00
|
|
|
:c:func:`PyObject_IsSubclass` to do the same check that :func:`issubclass`
|
|
|
|
would do.
|
|
|
|
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: PyObject* PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2013-08-01 19:12:45 +00:00
|
|
|
Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type object. Use
|
2012-06-03 03:47:53 +00:00
|
|
|
Python's default memory allocation mechanism to allocate a new instance and
|
2019-10-30 10:03:20 +00:00
|
|
|
initialize all its contents to ``NULL``.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2013-08-01 19:12:45 +00:00
|
|
|
Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type object. Create a
|
|
|
|
new instance using the type's :c:member:`~PyTypeObject.tp_alloc` slot.
|
2008-01-20 09:30:57 +00:00
|
|
|
|
2010-10-06 10:11:56 +00:00
|
|
|
.. c:function:: int PyType_Ready(PyTypeObject *type)
|
2008-01-20 09:30:57 +00:00
|
|
|
|
|
|
|
Finalize a type object. This should be called on all type objects to finish
|
|
|
|
their initialization. This function is responsible for adding inherited slots
|
|
|
|
from a type's base class. Return ``0`` on success, or return ``-1`` and sets an
|
|
|
|
exception on error.
|
2012-06-23 21:21:48 +00:00
|
|
|
|
2021-05-29 03:32:42 +00:00
|
|
|
.. note::
|
|
|
|
If some of the base classes implements the GC protocol and the provided
|
|
|
|
type does not include the :const:`Py_TPFLAGS_HAVE_GC` in its flags, then
|
|
|
|
the GC protocol will be automatically implemented from its parents. On
|
|
|
|
the contrary, if the type being created does include
|
|
|
|
:const:`Py_TPFLAGS_HAVE_GC` in its flags then it **must** implement the
|
|
|
|
GC protocol itself by at least implementing the
|
|
|
|
:c:member:`~PyTypeObject.tp_traverse` handle.
|
|
|
|
|
2021-07-29 07:57:02 +00:00
|
|
|
.. c:function:: PyObject* PyType_GetName(PyTypeObject *type)
|
|
|
|
|
|
|
|
Return the type's name. Equivalent to getting the type's ``__name__`` attribute.
|
|
|
|
|
|
|
|
.. versionadded:: 3.11
|
|
|
|
|
2021-08-17 13:39:34 +00:00
|
|
|
.. c:function:: PyObject* PyType_GetQualName(PyTypeObject *type)
|
|
|
|
|
|
|
|
Return the type's qualified name. Equivalent to getting the
|
|
|
|
type's ``__qualname__`` attribute.
|
|
|
|
|
|
|
|
.. versionadded:: 3.11
|
|
|
|
|
2014-02-04 08:33:05 +00:00
|
|
|
.. c:function:: void* PyType_GetSlot(PyTypeObject *type, int slot)
|
|
|
|
|
2014-02-09 00:10:24 +00:00
|
|
|
Return the function pointer stored in the given slot. If the
|
2019-10-30 10:03:20 +00:00
|
|
|
result is ``NULL``, this indicates that either the slot is ``NULL``,
|
2014-02-04 08:33:05 +00:00
|
|
|
or that the function was called with invalid parameters.
|
|
|
|
Callers will typically cast the result pointer into the appropriate
|
|
|
|
function type.
|
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
See :c:member:`PyType_Slot.slot` for possible values of the *slot* argument.
|
|
|
|
|
2014-02-04 08:33:05 +00:00
|
|
|
.. versionadded:: 3.4
|
2019-05-24 09:19:42 +00:00
|
|
|
|
2020-11-10 20:53:46 +00:00
|
|
|
.. versionchanged:: 3.10
|
|
|
|
:c:func:`PyType_GetSlot` can now accept all types.
|
2021-04-29 08:26:34 +00:00
|
|
|
Previously, it was limited to :ref:`heap types <heap-types>`.
|
2020-11-10 20:53:46 +00:00
|
|
|
|
2020-05-07 13:39:59 +00:00
|
|
|
.. c:function:: PyObject* PyType_GetModule(PyTypeObject *type)
|
|
|
|
|
|
|
|
Return the module object associated with the given type when the type was
|
|
|
|
created using :c:func:`PyType_FromModuleAndSpec`.
|
|
|
|
|
|
|
|
If no module is associated with the given type, sets :py:class:`TypeError`
|
|
|
|
and returns ``NULL``.
|
|
|
|
|
2020-08-27 13:36:48 +00:00
|
|
|
This function is usually used to get the module in which a method is defined.
|
|
|
|
Note that in such a method, ``PyType_GetModule(Py_TYPE(self))``
|
|
|
|
may not return the intended result.
|
|
|
|
``Py_TYPE(self)`` may be a *subclass* of the intended class, and subclasses
|
|
|
|
are not necessarily defined in the same module as their superclass.
|
|
|
|
See :c:type:`PyCMethod` to get the class that defines the method.
|
2022-02-11 16:22:11 +00:00
|
|
|
See :c:func:`PyType_GetModuleByDef` for cases when ``PyCMethod`` cannot
|
|
|
|
be used.
|
2020-08-27 13:36:48 +00:00
|
|
|
|
2020-05-07 13:39:59 +00:00
|
|
|
.. versionadded:: 3.9
|
|
|
|
|
|
|
|
.. c:function:: void* PyType_GetModuleState(PyTypeObject *type)
|
|
|
|
|
|
|
|
Return the state of the module object associated with the given type.
|
|
|
|
This is a shortcut for calling :c:func:`PyModule_GetState()` on the result
|
|
|
|
of :c:func:`PyType_GetModule`.
|
|
|
|
|
|
|
|
If no module is associated with the given type, sets :py:class:`TypeError`
|
|
|
|
and returns ``NULL``.
|
|
|
|
|
|
|
|
If the *type* has an associated module but its state is ``NULL``,
|
|
|
|
returns ``NULL`` without setting an exception.
|
|
|
|
|
|
|
|
.. versionadded:: 3.9
|
|
|
|
|
2022-02-11 16:22:11 +00:00
|
|
|
.. c:function:: PyObject* PyType_GetModuleByDef(PyTypeObject *type, struct PyModuleDef *def)
|
|
|
|
|
|
|
|
Find the first superclass whose module was created from
|
|
|
|
the given :c:type:`PyModuleDef` *def*, and return that module.
|
|
|
|
|
|
|
|
If no module is found, raises a :py:class:`TypeError` and returns ``NULL``.
|
|
|
|
|
|
|
|
This function is intended to be used together with
|
|
|
|
:c:func:`PyModule_GetState()` to get module state from slot methods (such as
|
|
|
|
:c:member:`~PyTypeObject.tp_init` or :c:member:`~PyNumberMethods.nb_add`)
|
|
|
|
and other places where a method's defining class cannot be passed using the
|
|
|
|
:c:type:`PyCMethod` calling convention.
|
|
|
|
|
|
|
|
.. versionadded:: 3.11
|
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
|
|
|
|
Creating Heap-Allocated Types
|
|
|
|
.............................
|
|
|
|
|
|
|
|
The following functions and structs are used to create
|
|
|
|
:ref:`heap types <heap-types>`.
|
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
.. c:function:: PyObject* PyType_FromMetaclass(PyTypeObject *metaclass, PyObject *module, PyType_Spec *spec, PyObject *bases)
|
2019-05-24 09:19:42 +00:00
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
Create and return a :ref:`heap type <heap-types>` from the *spec*
|
2022-06-09 15:11:08 +00:00
|
|
|
(see :const:`Py_TPFLAGS_HEAPTYPE`).
|
2019-05-24 09:19:42 +00:00
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
The metaclass *metaclass* is used to construct the resulting type object.
|
2022-06-09 15:11:08 +00:00
|
|
|
When *metaclass* is ``NULL``, the metaclass is derived from *bases*
|
|
|
|
(or *Py_tp_base[s]* slots if *bases* is ``NULL``, see below).
|
|
|
|
Note that metaclasses that override
|
2022-05-27 08:27:39 +00:00
|
|
|
:c:member:`~PyTypeObject.tp_new` are not supported.
|
|
|
|
|
2020-11-22 11:25:02 +00:00
|
|
|
The *bases* argument can be used to specify base classes; it can either
|
|
|
|
be only one class or a tuple of classes.
|
2020-11-21 10:02:53 +00:00
|
|
|
If *bases* is ``NULL``, the *Py_tp_bases* slot is used instead.
|
|
|
|
If that also is ``NULL``, the *Py_tp_base* slot is used instead.
|
2019-10-30 10:03:20 +00:00
|
|
|
If that also is ``NULL``, the new type derives from :class:`object`.
|
2019-05-24 09:19:42 +00:00
|
|
|
|
2020-08-27 13:36:48 +00:00
|
|
|
The *module* argument can be used to record the module in which the new
|
|
|
|
class is defined. It must be a module object or ``NULL``.
|
2020-05-07 13:39:59 +00:00
|
|
|
If not ``NULL``, the module is associated with the new type and can later be
|
2021-09-18 01:45:33 +00:00
|
|
|
retrieved with :c:func:`PyType_GetModule`.
|
2020-08-27 13:36:48 +00:00
|
|
|
The associated module is not inherited by subclasses; it must be specified
|
|
|
|
for each class individually.
|
2020-05-07 13:39:59 +00:00
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
This function calls :c:func:`PyType_Ready` on the new type.
|
|
|
|
|
2022-06-09 15:11:08 +00:00
|
|
|
Note that this function does *not* fully match the behavior of
|
|
|
|
calling :py:class:`type() <type>` or using the :keyword:`class` statement.
|
|
|
|
With user-provided base types or metaclasses, prefer
|
|
|
|
:ref:`calling <capi-call>` :py:class:`type` (or the metaclass)
|
|
|
|
over ``PyType_From*`` functions.
|
|
|
|
Specifically:
|
|
|
|
|
|
|
|
* :py:meth:`~object.__new__` is not called on the new class
|
|
|
|
(and it must be set to ``type.__new__``).
|
|
|
|
* :py:meth:`~object.__init__` is not called on the new class.
|
|
|
|
* :py:meth:`~object.__init_subclass__` is not called on any bases.
|
|
|
|
* :py:meth:`~object.__set_name__` is not called on new descriptors.
|
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
.. versionadded:: 3.12
|
|
|
|
|
|
|
|
.. c:function:: PyObject* PyType_FromModuleAndSpec(PyObject *module, PyType_Spec *spec, PyObject *bases)
|
|
|
|
|
|
|
|
Equivalent to ``PyType_FromMetaclass(NULL, module, spec, bases)``.
|
|
|
|
|
2020-05-07 13:39:59 +00:00
|
|
|
.. versionadded:: 3.9
|
|
|
|
|
2020-11-06 16:04:47 +00:00
|
|
|
.. versionchanged:: 3.10
|
|
|
|
|
2020-11-22 11:25:02 +00:00
|
|
|
The function now accepts a single class as the *bases* argument and
|
|
|
|
``NULL`` as the ``tp_doc`` slot.
|
2020-11-06 16:04:47 +00:00
|
|
|
|
2022-06-09 15:11:08 +00:00
|
|
|
.. versionchanged:: 3.12
|
|
|
|
|
|
|
|
The function now finds and uses a metaclass corresponding to the provided
|
|
|
|
base classes. Previously, only :class:`type` instances were returned.
|
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
|
2020-05-07 13:39:59 +00:00
|
|
|
.. c:function:: PyObject* PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
|
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, bases)``.
|
2020-05-07 13:39:59 +00:00
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
.. versionadded:: 3.3
|
|
|
|
|
2022-06-09 15:11:08 +00:00
|
|
|
.. versionchanged:: 3.12
|
|
|
|
|
|
|
|
The function now finds and uses a metaclass corresponding to the provided
|
|
|
|
base classes. Previously, only :class:`type` instances were returned.
|
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
.. c:function:: PyObject* PyType_FromSpec(PyType_Spec *spec)
|
|
|
|
|
2022-05-27 08:27:39 +00:00
|
|
|
Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, NULL)``.
|
2019-05-24 09:19:42 +00:00
|
|
|
|
2022-06-09 15:11:08 +00:00
|
|
|
.. versionchanged:: 3.12
|
|
|
|
|
|
|
|
The function now finds and uses a metaclass corresponding to the
|
|
|
|
base classes provided in *Py_tp_base[s]* slots.
|
|
|
|
Previously, only :class:`type` instances were returned.
|
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
.. c:type:: PyType_Spec
|
|
|
|
|
|
|
|
Structure defining a type's behavior.
|
|
|
|
|
|
|
|
.. c:member:: const char* PyType_Spec.name
|
|
|
|
|
|
|
|
Name of the type, used to set :c:member:`PyTypeObject.tp_name`.
|
|
|
|
|
|
|
|
.. c:member:: int PyType_Spec.basicsize
|
|
|
|
.. c:member:: int PyType_Spec.itemsize
|
|
|
|
|
|
|
|
Size of the instance in bytes, used to set
|
|
|
|
:c:member:`PyTypeObject.tp_basicsize` and
|
|
|
|
:c:member:`PyTypeObject.tp_itemsize`.
|
|
|
|
|
|
|
|
.. c:member:: int PyType_Spec.flags
|
|
|
|
|
|
|
|
Type flags, used to set :c:member:`PyTypeObject.tp_flags`.
|
|
|
|
|
|
|
|
If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set,
|
|
|
|
:c:func:`PyType_FromSpecWithBases` sets it automatically.
|
|
|
|
|
|
|
|
.. c:member:: PyType_Slot *PyType_Spec.slots
|
|
|
|
|
|
|
|
Array of :c:type:`PyType_Slot` structures.
|
|
|
|
Terminated by the special slot value ``{0, NULL}``.
|
|
|
|
|
2022-06-10 13:55:09 +00:00
|
|
|
Each slot ID should be specified at most once.
|
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
.. c:type:: PyType_Slot
|
|
|
|
|
|
|
|
Structure defining optional functionality of a type, containing a slot ID
|
|
|
|
and a value pointer.
|
|
|
|
|
|
|
|
.. c:member:: int PyType_Slot.slot
|
|
|
|
|
|
|
|
A slot ID.
|
|
|
|
|
|
|
|
Slot IDs are named like the field names of the structures
|
|
|
|
:c:type:`PyTypeObject`, :c:type:`PyNumberMethods`,
|
|
|
|
:c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and
|
|
|
|
:c:type:`PyAsyncMethods` with an added ``Py_`` prefix.
|
|
|
|
For example, use:
|
|
|
|
|
|
|
|
* ``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`
|
|
|
|
* ``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`
|
|
|
|
* ``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`
|
|
|
|
|
2020-09-02 01:36:42 +00:00
|
|
|
The following fields cannot be set at all using :c:type:`PyType_Spec` and
|
|
|
|
:c:type:`PyType_Slot`:
|
2019-05-24 09:19:42 +00:00
|
|
|
|
|
|
|
* :c:member:`~PyTypeObject.tp_dict`
|
|
|
|
* :c:member:`~PyTypeObject.tp_mro`
|
|
|
|
* :c:member:`~PyTypeObject.tp_cache`
|
|
|
|
* :c:member:`~PyTypeObject.tp_subclasses`
|
|
|
|
* :c:member:`~PyTypeObject.tp_weaklist`
|
2019-09-19 16:29:05 +00:00
|
|
|
* :c:member:`~PyTypeObject.tp_vectorcall`
|
2019-09-25 11:06:16 +00:00
|
|
|
* :c:member:`~PyTypeObject.tp_weaklistoffset`
|
2022-08-30 15:26:08 +00:00
|
|
|
(use :const:`Py_TPFLAGS_MANAGED_WEAKREF` instead)
|
2019-09-25 11:06:16 +00:00
|
|
|
* :c:member:`~PyTypeObject.tp_dictoffset`
|
2022-08-30 15:26:08 +00:00
|
|
|
(use :const:`Py_TPFLAGS_MANAGED_DICT` instead)
|
2019-11-12 13:08:00 +00:00
|
|
|
* :c:member:`~PyTypeObject.tp_vectorcall_offset`
|
2020-05-11 21:38:55 +00:00
|
|
|
(see :ref:`PyMemberDef <pymemberdef-offsets>`)
|
2020-09-02 01:36:42 +00:00
|
|
|
|
2020-11-21 10:02:53 +00:00
|
|
|
Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be
|
|
|
|
problematic on some platforms.
|
2019-05-24 09:19:42 +00:00
|
|
|
To avoid issues, use the *bases* argument of
|
|
|
|
:py:func:`PyType_FromSpecWithBases` instead.
|
|
|
|
|
2020-09-02 01:36:42 +00:00
|
|
|
.. versionchanged:: 3.9
|
|
|
|
|
2022-04-02 19:31:05 +00:00
|
|
|
Slots in :c:type:`PyBufferProcs` may be set in the unlimited API.
|
2020-09-02 01:36:42 +00:00
|
|
|
|
2022-02-02 15:03:10 +00:00
|
|
|
.. versionchanged:: 3.11
|
|
|
|
:c:member:`~PyBufferProcs.bf_getbuffer` and
|
|
|
|
:c:member:`~PyBufferProcs.bf_releasebuffer` are now available
|
2022-04-02 19:31:05 +00:00
|
|
|
under the limited API.
|
2022-02-02 15:03:10 +00:00
|
|
|
|
2019-05-24 09:19:42 +00:00
|
|
|
.. c:member:: void *PyType_Slot.pfunc
|
|
|
|
|
|
|
|
The desired value of the slot. In most cases, this is a pointer
|
|
|
|
to a function.
|
2020-11-14 12:03:42 +00:00
|
|
|
|
|
|
|
Slots other than ``Py_tp_doc`` may not be ``NULL``.
|