0x1949 Team - FAZEMRX - MANAGER
Edit File: structures.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <title>Common Object Structures — Python 2.7.18 documentation</title> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/classic.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script src="../_static/sidebar.js"></script> <link rel="search" type="application/opensearchdescription+xml" title="Search within Python 2.7.18 documentation" href="../_static/opensearch.xml"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="copyright" title="Copyright" href="../copyright.html" /> <link rel="next" title="Type Objects" href="typeobj.html" /> <link rel="prev" title="Allocating Objects on the Heap" href="allocation.html" /> <link rel="shortcut icon" type="image/png" href="../_static/py.png" /> <link rel="canonical" href="file:///usr/share/doc/python2.7/html/c-api/structures.html" /> <script type="text/javascript" src="../_static/copybutton.js"></script> </head><body> <div id="outdated-warning" style="padding: .5em; text-align: center; background-color: #FFBABA; color: #6A0E0E;"> This document is for an old version of Python that is <a href="https://devguide.python.org/devcycle/#end-of-life-branches">no longer supported</a>. You should install the python3 and python3-doc packages and read the <a href="file:///usr/share/doc/python3-doc/html/c-api/structures.html"> Python documentation for the Python3 version packaged in this release</a>. </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="typeobj.html" title="Type Objects" accesskey="N">next</a> |</li> <li class="right" > <a href="allocation.html" title="Allocating Objects on the Heap" accesskey="P">previous</a> |</li> <li><img src="../_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="https://www.python.org/">Python</a> »</li> <li> <a href="../index.html">Python 2.7.18 documentation</a> » </li> <li class="nav-item nav-item-1"><a href="index.html" >Python/C API Reference Manual</a> »</li> <li class="nav-item nav-item-2"><a href="objimpl.html" accesskey="U">Object Implementation Support</a> »</li> <li class="nav-item nav-item-this"><a href="">Common Object Structures</a></li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <section id="common-object-structures"> <span id="common-structs"></span><h1>Common Object Structures<a class="headerlink" href="#common-object-structures" title="Permalink to this headline">¶</a></h1> <p>There are a large number of structures which are used in the definition of object types for Python. This section describes these structures and how they are used.</p> <p>All Python objects ultimately share a small number of fields at the beginning of the object’s representation in memory. These are represented by the <a class="reference internal" href="#c.PyObject" title="PyObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject</span></code></a> and <a class="reference internal" href="#c.PyVarObject" title="PyVarObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyVarObject</span></code></a> types, which are defined, in turn, by the expansions of some macros also used, whether directly or indirectly, in the definition of all other Python objects.</p> <dl class="c type"> <dt class="sig sig-object c" id="c.PyObject"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyObject</span></span></span><a class="headerlink" href="#c.PyObject" title="Permalink to this definition">¶</a><br /></dt> <dd><p>All object types are extensions of this type. This is a type which contains the information Python needs to treat a pointer to an object as an object. In a normal “release” build, it contains only the object’s reference count and a pointer to the corresponding type object. It corresponds to the fields defined by the expansion of the <code class="docutils literal notranslate"><span class="pre">PyObject_HEAD</span></code> macro.</p> </dd></dl> <dl class="c type"> <dt class="sig sig-object c" id="c.PyVarObject"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyVarObject</span></span></span><a class="headerlink" href="#c.PyVarObject" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This is an extension of <a class="reference internal" href="#c.PyObject" title="PyObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject</span></code></a> that adds the <code class="xref py py-attr docutils literal notranslate"><span class="pre">ob_size</span></code> field. This is only used for objects that have some notion of <em>length</em>. This type does not often appear in the Python/C API. It corresponds to the fields defined by the expansion of the <code class="docutils literal notranslate"><span class="pre">PyObject_VAR_HEAD</span></code> macro.</p> </dd></dl> <p>These macros are used in the definition of <a class="reference internal" href="#c.PyObject" title="PyObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject</span></code></a> and <a class="reference internal" href="#c.PyVarObject" title="PyVarObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyVarObject</span></code></a>:</p> <dl class="c macro"> <dt class="sig sig-object c" id="c.PyObject_HEAD"> <span class="sig-name descname"><span class="n"><span class="pre">PyObject_HEAD</span></span></span><a class="headerlink" href="#c.PyObject_HEAD" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This is a macro which expands to the declarations of the fields of the <a class="reference internal" href="#c.PyObject" title="PyObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject</span></code></a> type; it is used when declaring new types which represent objects without a varying length. The specific fields it expands to depend on the definition of <code class="xref c c-macro docutils literal notranslate"><span class="pre">Py_TRACE_REFS</span></code>. By default, that macro is not defined, and <a class="reference internal" href="#c.PyObject_HEAD" title="PyObject_HEAD"><code class="xref c c-macro docutils literal notranslate"><span class="pre">PyObject_HEAD</span></code></a> expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">Py_ssize_t</span> <span class="n">ob_refcnt</span><span class="p">;</span> <span class="n">PyTypeObject</span> <span class="o">*</span><span class="n">ob_type</span><span class="p">;</span> </pre></div> </div> <p>When <code class="xref c c-macro docutils literal notranslate"><span class="pre">Py_TRACE_REFS</span></code> is defined, it expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">PyObject</span> <span class="o">*</span><span class="n">_ob_next</span><span class="p">,</span> <span class="o">*</span><span class="n">_ob_prev</span><span class="p">;</span> <span class="n">Py_ssize_t</span> <span class="n">ob_refcnt</span><span class="p">;</span> <span class="n">PyTypeObject</span> <span class="o">*</span><span class="n">ob_type</span><span class="p">;</span> </pre></div> </div> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.PyObject_VAR_HEAD"> <span class="sig-name descname"><span class="n"><span class="pre">PyObject_VAR_HEAD</span></span></span><a class="headerlink" href="#c.PyObject_VAR_HEAD" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This is a macro which expands to the declarations of the fields of the <a class="reference internal" href="#c.PyVarObject" title="PyVarObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyVarObject</span></code></a> type; it is used when declaring new types which represent objects with a length that varies from instance to instance. This macro always expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">PyObject_HEAD</span> <span class="n">Py_ssize_t</span> <span class="n">ob_size</span><span class="p">;</span> </pre></div> </div> <p>Note that <a class="reference internal" href="#c.PyObject_HEAD" title="PyObject_HEAD"><code class="xref c c-macro docutils literal notranslate"><span class="pre">PyObject_HEAD</span></code></a> is part of the expansion, and that its own expansion varies depending on the definition of <code class="xref c c-macro docutils literal notranslate"><span class="pre">Py_TRACE_REFS</span></code>.</p> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.Py_TYPE"> <span class="sig-name descname"><span class="n"><span class="pre">Py_TYPE</span></span></span><span class="sig-paren">(</span><span class="n"><span class="pre">o</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.Py_TYPE" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This macro is used to access the <code class="xref py py-attr docutils literal notranslate"><span class="pre">ob_type</span></code> member of a Python object. It expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="p">(((</span><span class="n">PyObject</span><span class="o">*</span><span class="p">)(</span><span class="n">o</span><span class="p">))</span><span class="o">-></span><span class="n">ob_type</span><span class="p">)</span> </pre></div> </div> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.6.</span></p> </div> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.Py_REFCNT"> <span class="sig-name descname"><span class="n"><span class="pre">Py_REFCNT</span></span></span><span class="sig-paren">(</span><span class="n"><span class="pre">o</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.Py_REFCNT" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This macro is used to access the <code class="xref py py-attr docutils literal notranslate"><span class="pre">ob_refcnt</span></code> member of a Python object. It expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="p">(((</span><span class="n">PyObject</span><span class="o">*</span><span class="p">)(</span><span class="n">o</span><span class="p">))</span><span class="o">-></span><span class="n">ob_refcnt</span><span class="p">)</span> </pre></div> </div> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.6.</span></p> </div> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.Py_SIZE"> <span class="sig-name descname"><span class="n"><span class="pre">Py_SIZE</span></span></span><span class="sig-paren">(</span><span class="n"><span class="pre">o</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.Py_SIZE" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This macro is used to access the <code class="xref py py-attr docutils literal notranslate"><span class="pre">ob_size</span></code> member of a Python object. It expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="p">(((</span><span class="n">PyVarObject</span><span class="o">*</span><span class="p">)(</span><span class="n">o</span><span class="p">))</span><span class="o">-></span><span class="n">ob_size</span><span class="p">)</span> </pre></div> </div> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.6.</span></p> </div> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.PyObject_HEAD_INIT"> <span class="sig-name descname"><span class="n"><span class="pre">PyObject_HEAD_INIT</span></span></span><span class="sig-paren">(</span><span class="n"><span class="pre">type</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.PyObject_HEAD_INIT" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This is a macro which expands to initialization values for a new <a class="reference internal" href="#c.PyObject" title="PyObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject</span></code></a> type. This macro expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">_PyObject_EXTRA_INIT</span> <span class="mi">1</span><span class="p">,</span> <span class="nb">type</span><span class="p">,</span> </pre></div> </div> </dd></dl> <dl class="c macro"> <dt class="sig sig-object c" id="c.PyVarObject_HEAD_INIT"> <span class="sig-name descname"><span class="n"><span class="pre">PyVarObject_HEAD_INIT</span></span></span><span class="sig-paren">(</span><span class="n"><span class="pre">type</span></span>, <span class="n"><span class="pre">size</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.PyVarObject_HEAD_INIT" title="Permalink to this definition">¶</a><br /></dt> <dd><p>This is a macro which expands to initialization values for a new <a class="reference internal" href="#c.PyVarObject" title="PyVarObject"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyVarObject</span></code></a> type, including the <code class="xref py py-attr docutils literal notranslate"><span class="pre">ob_size</span></code> field. This macro expands to:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">_PyObject_EXTRA_INIT</span> <span class="mi">1</span><span class="p">,</span> <span class="nb">type</span><span class="p">,</span> <span class="n">size</span><span class="p">,</span> </pre></div> </div> </dd></dl> <dl class="c type"> <dt class="sig sig-object c" id="c.PyCFunction"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyCFunction</span></span></span><a class="headerlink" href="#c.PyCFunction" title="Permalink to this definition">¶</a><br /></dt> <dd><p>Type of the functions used to implement most Python callables in C. Functions of this type take two <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code> parameters and return one such value. If the return value is <em>NULL</em>, an exception shall have been set. If not <em>NULL</em>, the return value is interpreted as the return value of the function as exposed in Python. The function must return a new reference.</p> </dd></dl> <dl class="c type"> <dt class="sig sig-object c" id="c.PyMethodDef"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyMethodDef</span></span></span><a class="headerlink" href="#c.PyMethodDef" title="Permalink to this definition">¶</a><br /></dt> <dd><p>Structure used to describe a method of an extension type. This structure has four fields:</p> <table class="docutils align-default"> <colgroup> <col style="width: 29%" /> <col style="width: 21%" /> <col style="width: 50%" /> </colgroup> <thead> <tr class="row-odd"><th class="head"><p>Field</p></th> <th class="head"><p>C Type</p></th> <th class="head"><p>Meaning</p></th> </tr> </thead> <tbody> <tr class="row-even"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_name</span></code></p></td> <td><p>char *</p></td> <td><p>name of the method</p></td> </tr> <tr class="row-odd"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_meth</span></code></p></td> <td><p>PyCFunction</p></td> <td><p>pointer to the C implementation</p></td> </tr> <tr class="row-even"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_flags</span></code></p></td> <td><p>int</p></td> <td><p>flag bits indicating how the call should be constructed</p></td> </tr> <tr class="row-odd"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_doc</span></code></p></td> <td><p>char *</p></td> <td><p>points to the contents of the docstring</p></td> </tr> </tbody> </table> </dd></dl> <p>The <code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_meth</span></code> is a C function pointer. The functions may be of different types, but they always return <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code>. If the function is not of the <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a>, the compiler will require a cast in the method table. Even though <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a> defines the first parameter as <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code>, it is common that the method implementation uses the specific C type of the <em>self</em> object.</p> <p>The <code class="xref py py-attr docutils literal notranslate"><span class="pre">ml_flags</span></code> field is a bitfield which can include the following flags. The individual flags indicate either a calling convention or a binding convention. Of the calling convention flags, only <a class="reference internal" href="#METH_VARARGS" title="METH_VARARGS"><code class="xref py py-const docutils literal notranslate"><span class="pre">METH_VARARGS</span></code></a> and <a class="reference internal" href="#METH_KEYWORDS" title="METH_KEYWORDS"><code class="xref py py-const docutils literal notranslate"><span class="pre">METH_KEYWORDS</span></code></a> can be combined. Any of the calling convention flags can be combined with a binding flag.</p> <dl class="py data"> <dt class="sig sig-object py" id="METH_VARARGS"> <span class="sig-name descname"><span class="pre">METH_VARARGS</span></span><a class="headerlink" href="#METH_VARARGS" title="Permalink to this definition">¶</a></dt> <dd><p>This is the typical calling convention, where the methods have the type <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a>. The function expects two <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code> values. The first one is the <em>self</em> object for methods; for module functions, it is the module object. The second parameter (often called <em>args</em>) is a tuple object representing all arguments. This parameter is typically processed using <a class="reference internal" href="arg.html#c.PyArg_ParseTuple" title="PyArg_ParseTuple"><code class="xref c c-func docutils literal notranslate"><span class="pre">PyArg_ParseTuple()</span></code></a> or <a class="reference internal" href="arg.html#c.PyArg_UnpackTuple" title="PyArg_UnpackTuple"><code class="xref c c-func docutils literal notranslate"><span class="pre">PyArg_UnpackTuple()</span></code></a>.</p> </dd></dl> <dl class="py data"> <dt class="sig sig-object py" id="METH_KEYWORDS"> <span class="sig-name descname"><span class="pre">METH_KEYWORDS</span></span><a class="headerlink" href="#METH_KEYWORDS" title="Permalink to this definition">¶</a></dt> <dd><p>Methods with these flags must be of type <code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunctionWithKeywords</span></code>. The function expects three parameters: <em>self</em>, <em>args</em>, and a dictionary of all the keyword arguments. The flag is typically combined with <a class="reference internal" href="#METH_VARARGS" title="METH_VARARGS"><code class="xref py py-const docutils literal notranslate"><span class="pre">METH_VARARGS</span></code></a>, and the parameters are typically processed using <a class="reference internal" href="arg.html#c.PyArg_ParseTupleAndKeywords" title="PyArg_ParseTupleAndKeywords"><code class="xref c c-func docutils literal notranslate"><span class="pre">PyArg_ParseTupleAndKeywords()</span></code></a>.</p> </dd></dl> <dl class="py data"> <dt class="sig sig-object py" id="METH_NOARGS"> <span class="sig-name descname"><span class="pre">METH_NOARGS</span></span><a class="headerlink" href="#METH_NOARGS" title="Permalink to this definition">¶</a></dt> <dd><p>Methods without parameters don’t need to check whether arguments are given if they are listed with the <a class="reference internal" href="#METH_NOARGS" title="METH_NOARGS"><code class="xref py py-const docutils literal notranslate"><span class="pre">METH_NOARGS</span></code></a> flag. They need to be of type <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a>. The first parameter is typically named <code class="docutils literal notranslate"><span class="pre">self</span></code> and will hold a reference to the module or object instance. In all cases the second parameter will be <em>NULL</em>.</p> </dd></dl> <dl class="py data"> <dt class="sig sig-object py" id="METH_O"> <span class="sig-name descname"><span class="pre">METH_O</span></span><a class="headerlink" href="#METH_O" title="Permalink to this definition">¶</a></dt> <dd><p>Methods with a single object argument can be listed with the <a class="reference internal" href="#METH_O" title="METH_O"><code class="xref py py-const docutils literal notranslate"><span class="pre">METH_O</span></code></a> flag, instead of invoking <a class="reference internal" href="arg.html#c.PyArg_ParseTuple" title="PyArg_ParseTuple"><code class="xref c c-func docutils literal notranslate"><span class="pre">PyArg_ParseTuple()</span></code></a> with a <code class="docutils literal notranslate"><span class="pre">"O"</span></code> argument. They have the type <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a>, with the <em>self</em> parameter, and a <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code> parameter representing the single argument.</p> </dd></dl> <dl class="py data"> <dt class="sig sig-object py" id="METH_OLDARGS"> <span class="sig-name descname"><span class="pre">METH_OLDARGS</span></span><a class="headerlink" href="#METH_OLDARGS" title="Permalink to this definition">¶</a></dt> <dd><p>This calling convention is deprecated. The method must be of type <a class="reference internal" href="#c.PyCFunction" title="PyCFunction"><code class="xref c c-type docutils literal notranslate"><span class="pre">PyCFunction</span></code></a>. The second argument is <em>NULL</em> if no arguments are given, a single object if exactly one argument is given, and a tuple of objects if more than one argument is given. There is no way for a function using this convention to distinguish between a call with multiple arguments and a call with a tuple as the only argument.</p> </dd></dl> <p>These two constants are not used to indicate the calling convention but the binding when use with methods of classes. These may not be used for functions defined for modules. At most one of these flags may be set for any given method.</p> <dl class="py data"> <dt class="sig sig-object py" id="METH_CLASS"> <span class="sig-name descname"><span class="pre">METH_CLASS</span></span><a class="headerlink" href="#METH_CLASS" title="Permalink to this definition">¶</a></dt> <dd><p id="index-0">The method will be passed the type object as the first parameter rather than an instance of the type. This is used to create <em>class methods</em>, similar to what is created when using the <a class="reference internal" href="../library/functions.html#classmethod" title="classmethod"><code class="xref py py-func docutils literal notranslate"><span class="pre">classmethod()</span></code></a> built-in function.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.</span></p> </div> </dd></dl> <dl class="py data"> <dt class="sig sig-object py" id="METH_STATIC"> <span class="sig-name descname"><span class="pre">METH_STATIC</span></span><a class="headerlink" href="#METH_STATIC" title="Permalink to this definition">¶</a></dt> <dd><p id="index-1">The method will be passed <em>NULL</em> as the first parameter rather than an instance of the type. This is used to create <em>static methods</em>, similar to what is created when using the <a class="reference internal" href="../library/functions.html#staticmethod" title="staticmethod"><code class="xref py py-func docutils literal notranslate"><span class="pre">staticmethod()</span></code></a> built-in function.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.</span></p> </div> </dd></dl> <p>One other constant controls whether a method is loaded in place of another definition with the same method name.</p> <dl class="py data"> <dt class="sig sig-object py" id="METH_COEXIST"> <span class="sig-name descname"><span class="pre">METH_COEXIST</span></span><a class="headerlink" href="#METH_COEXIST" title="Permalink to this definition">¶</a></dt> <dd><p>The method will be loaded in place of existing definitions. Without <em>METH_COEXIST</em>, the default is to skip repeated definitions. Since slot wrappers are loaded before the method table, the existence of a <em>sq_contains</em> slot, for example, would generate a wrapped method named <code class="xref py py-meth docutils literal notranslate"><span class="pre">__contains__()</span></code> and preclude the loading of a corresponding PyCFunction with the same name. With the flag defined, the PyCFunction will be loaded in place of the wrapper object and will co-exist with the slot. This is helpful because calls to PyCFunctions are optimized more than wrapper object calls.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.4.</span></p> </div> </dd></dl> <dl class="c type"> <dt class="sig sig-object c" id="c.PyMemberDef"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyMemberDef</span></span></span><a class="headerlink" href="#c.PyMemberDef" title="Permalink to this definition">¶</a><br /></dt> <dd><p>Structure which describes an attribute of a type which corresponds to a C struct member. Its fields are:</p> <table class="docutils align-default"> <colgroup> <col style="width: 29%" /> <col style="width: 21%" /> <col style="width: 50%" /> </colgroup> <thead> <tr class="row-odd"><th class="head"><p>Field</p></th> <th class="head"><p>C Type</p></th> <th class="head"><p>Meaning</p></th> </tr> </thead> <tbody> <tr class="row-even"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">name</span></code></p></td> <td><p>char *</p></td> <td><p>name of the member</p></td> </tr> <tr class="row-odd"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">type</span></code></p></td> <td><p>int</p></td> <td><p>the type of the member in the C struct</p></td> </tr> <tr class="row-even"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">offset</span></code></p></td> <td><p>Py_ssize_t</p></td> <td><p>the offset in bytes that the member is located on the type’s object struct</p></td> </tr> <tr class="row-odd"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">flags</span></code></p></td> <td><p>int</p></td> <td><p>flag bits indicating if the field should be read-only or writable</p></td> </tr> <tr class="row-even"><td><p><code class="xref py py-attr docutils literal notranslate"><span class="pre">doc</span></code></p></td> <td><p>char *</p></td> <td><p>points to the contents of the docstring</p></td> </tr> </tbody> </table> <p><code class="xref py py-attr docutils literal notranslate"><span class="pre">type</span></code> can be one of many <code class="docutils literal notranslate"><span class="pre">T_</span></code> macros corresponding to various C types. When the member is accessed in Python, it will be converted to the equivalent Python type.</p> <table class="docutils align-default"> <colgroup> <col style="width: 45%" /> <col style="width: 55%" /> </colgroup> <thead> <tr class="row-odd"><th class="head"><p>Macro name</p></th> <th class="head"><p>C type</p></th> </tr> </thead> <tbody> <tr class="row-even"><td><p>T_SHORT</p></td> <td><p>short</p></td> </tr> <tr class="row-odd"><td><p>T_INT</p></td> <td><p>int</p></td> </tr> <tr class="row-even"><td><p>T_LONG</p></td> <td><p>long</p></td> </tr> <tr class="row-odd"><td><p>T_FLOAT</p></td> <td><p>float</p></td> </tr> <tr class="row-even"><td><p>T_DOUBLE</p></td> <td><p>double</p></td> </tr> <tr class="row-odd"><td><p>T_STRING</p></td> <td><p>char *</p></td> </tr> <tr class="row-even"><td><p>T_OBJECT</p></td> <td><p>PyObject *</p></td> </tr> <tr class="row-odd"><td><p>T_OBJECT_EX</p></td> <td><p>PyObject *</p></td> </tr> <tr class="row-even"><td><p>T_CHAR</p></td> <td><p>char</p></td> </tr> <tr class="row-odd"><td><p>T_BYTE</p></td> <td><p>char</p></td> </tr> <tr class="row-even"><td><p>T_UBYTE</p></td> <td><p>unsigned char</p></td> </tr> <tr class="row-odd"><td><p>T_UINT</p></td> <td><p>unsigned int</p></td> </tr> <tr class="row-even"><td><p>T_USHORT</p></td> <td><p>unsigned short</p></td> </tr> <tr class="row-odd"><td><p>T_ULONG</p></td> <td><p>unsigned long</p></td> </tr> <tr class="row-even"><td><p>T_BOOL</p></td> <td><p>char</p></td> </tr> <tr class="row-odd"><td><p>T_LONGLONG</p></td> <td><p>long long</p></td> </tr> <tr class="row-even"><td><p>T_ULONGLONG</p></td> <td><p>unsigned long long</p></td> </tr> <tr class="row-odd"><td><p>T_PYSSIZET</p></td> <td><p>Py_ssize_t</p></td> </tr> </tbody> </table> <p><code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT</span></code> and <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT_EX</span></code> differ in that <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT</span></code> returns <code class="docutils literal notranslate"><span class="pre">None</span></code> if the member is <em>NULL</em> and <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT_EX</span></code> raises an <code class="xref py py-exc docutils literal notranslate"><span class="pre">AttributeError</span></code>. Try to use <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT_EX</span></code> over <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT</span></code> because <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT_EX</span></code> handles use of the <a class="reference internal" href="../reference/simple_stmts.html#del"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">del</span></code></a> statement on that attribute more correctly than <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT</span></code>.</p> <p><code class="xref py py-attr docutils literal notranslate"><span class="pre">flags</span></code> can be <code class="docutils literal notranslate"><span class="pre">0</span></code> for write and read access or <code class="xref c c-macro docutils literal notranslate"><span class="pre">READONLY</span></code> for read-only access. Using <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_STRING</span></code> for <a class="reference internal" href="../library/functions.html#type" title="type"><code class="xref py py-attr docutils literal notranslate"><span class="pre">type</span></code></a> implies <code class="xref c c-macro docutils literal notranslate"><span class="pre">READONLY</span></code>. Only <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT</span></code> and <code class="xref c c-macro docutils literal notranslate"><span class="pre">T_OBJECT_EX</span></code> members can be deleted. (They are set to <em>NULL</em>).</p> </dd></dl> <dl class="c type"> <dt class="sig sig-object c" id="c.PyGetSetDef"> <span class="k"><span class="pre">type</span></span><span class="w"> </span><span class="sig-name descname"><span class="n"><span class="pre">PyGetSetDef</span></span></span><a class="headerlink" href="#c.PyGetSetDef" title="Permalink to this definition">¶</a><br /></dt> <dd><p>Structure to define property-like access for a type. See also description of the <a class="reference internal" href="typeobj.html#c.PyTypeObject.tp_getset" title="PyTypeObject.tp_getset"><code class="xref c c-member docutils literal notranslate"><span class="pre">PyTypeObject.tp_getset</span></code></a> slot.</p> <table class="docutils align-default"> <colgroup> <col style="width: 20%" /> <col style="width: 27%" /> <col style="width: 53%" /> </colgroup> <thead> <tr class="row-odd"><th class="head"><p>Field</p></th> <th class="head"><p>C Type</p></th> <th class="head"><p>Meaning</p></th> </tr> </thead> <tbody> <tr class="row-even"><td><p>name</p></td> <td><p>char *</p></td> <td><p>attribute name</p></td> </tr> <tr class="row-odd"><td><p>get</p></td> <td><p>getter</p></td> <td><p>C Function to get the attribute</p></td> </tr> <tr class="row-even"><td><p>set</p></td> <td><p>setter</p></td> <td><p>optional C function to set or delete the attribute, if omitted the attribute is readonly</p></td> </tr> <tr class="row-odd"><td><p>doc</p></td> <td><p>char *</p></td> <td><p>optional docstring</p></td> </tr> <tr class="row-even"><td><p>closure</p></td> <td><p>void *</p></td> <td><p>optional function pointer, providing additional data for getter and setter</p></td> </tr> </tbody> </table> <p>The <code class="docutils literal notranslate"><span class="pre">get</span></code> function takes one <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code> parameter (the instance) and a function pointer (the associated <code class="docutils literal notranslate"><span class="pre">closure</span></code>):</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">typedef</span> <span class="n">PyObject</span> <span class="o">*</span><span class="p">(</span><span class="o">*</span><span class="n">getter</span><span class="p">)(</span><span class="n">PyObject</span> <span class="o">*</span><span class="p">,</span> <span class="n">void</span> <span class="o">*</span><span class="p">);</span> </pre></div> </div> <p>It should return a new reference on success or <em>NULL</em> with a set exception on failure.</p> <p><code class="docutils literal notranslate"><span class="pre">set</span></code> functions take two <code class="xref c c-type docutils literal notranslate"><span class="pre">PyObject*</span></code> parameters (the instance and the value to be set) and a function pointer (the associated <code class="docutils literal notranslate"><span class="pre">closure</span></code>):</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">typedef</span> <span class="nb">int</span> <span class="p">(</span><span class="o">*</span><span class="n">setter</span><span class="p">)(</span><span class="n">PyObject</span> <span class="o">*</span><span class="p">,</span> <span class="n">PyObject</span> <span class="o">*</span><span class="p">,</span> <span class="n">void</span> <span class="o">*</span><span class="p">);</span> </pre></div> </div> <p>In case the attribute should be deleted the second parameter is <em>NULL</em>. Should return <code class="docutils literal notranslate"><span class="pre">0</span></code> on success or <code class="docutils literal notranslate"><span class="pre">-1</span></code> with a set exception on failure.</p> </dd></dl> <dl class="c function"> <dt class="sig sig-object c" id="c.Py_FindMethod"> <a class="reference internal" href="#c.PyObject" title="PyObject"><span class="n"><span class="pre">PyObject</span></span></a><span class="w"> </span><span class="p"><span class="pre">*</span></span><span class="sig-name descname"><span class="n"><span class="pre">Py_FindMethod</span></span></span><span class="sig-paren">(</span><a class="reference internal" href="#c.PyMethodDef" title="PyMethodDef"><span class="n"><span class="pre">PyMethodDef</span></span></a><span class="w"> </span><span class="n"><span class="pre">table</span></span><span class="p"><span class="pre">[</span></span><span class="p"><span class="pre">]</span></span>, <a class="reference internal" href="#c.PyObject" title="PyObject"><span class="n"><span class="pre">PyObject</span></span></a><span class="w"> </span><span class="p"><span class="pre">*</span></span><span class="n"><span class="pre">ob</span></span>, <span class="kt"><span class="pre">char</span></span><span class="w"> </span><span class="p"><span class="pre">*</span></span><span class="n"><span class="pre">name</span></span><span class="sig-paren">)</span><a class="headerlink" href="#c.Py_FindMethod" title="Permalink to this definition">¶</a><br /></dt> <dd><p>Return a bound method object for an extension type implemented in C. This can be useful in the implementation of a <a class="reference internal" href="typeobj.html#c.PyTypeObject.tp_getattro" title="PyTypeObject.tp_getattro"><code class="xref c c-member docutils literal notranslate"><span class="pre">tp_getattro</span></code></a> or <a class="reference internal" href="typeobj.html#c.PyTypeObject.tp_getattr" title="PyTypeObject.tp_getattr"><code class="xref c c-member docutils literal notranslate"><span class="pre">tp_getattr</span></code></a> handler that does not use the <a class="reference internal" href="object.html#c.PyObject_GenericGetAttr" title="PyObject_GenericGetAttr"><code class="xref c c-func docutils literal notranslate"><span class="pre">PyObject_GenericGetAttr()</span></code></a> function.</p> </dd></dl> </section> <div class="clearer"></div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="allocation.html" title="previous chapter">Allocating Objects on the Heap</a></p> <h4>Next topic</h4> <p class="topless"><a href="typeobj.html" title="next chapter">Type Objects</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../_sources/c-api/structures.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3 id="searchlabel">Quick search</h3> <div class="searchformwrapper"> <form class="search" action="../search.html" method="get"> <input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/> <input type="submit" value="Go" /> </form> </div> </div> <script>$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="typeobj.html" title="Type Objects" >next</a> |</li> <li class="right" > <a href="allocation.html" title="Allocating Objects on the Heap" >previous</a> |</li> <li><img src="../_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="https://www.python.org/">Python</a> »</li> <li> <a href="../index.html">Python 2.7.18 documentation</a> » </li> <li class="nav-item nav-item-1"><a href="index.html" >Python/C API Reference Manual</a> »</li> <li class="nav-item nav-item-2"><a href="objimpl.html" >Object Implementation Support</a> »</li> <li class="nav-item nav-item-this"><a href="">Common Object Structures</a></li> </ul> </div> <div class="footer"> © <a href="../copyright.html">Copyright</a> 1990-2024, Python Software Foundation. <br /> The Python Software Foundation is a non-profit corporation. <a href="https://www.python.org/psf/donations/">Please donate.</a> <br /> Last updated on November 21, 2024. <a href="../bugs.html">Found a bug</a>? <br /> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 4.3.2. </div> </body> </html>