Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8f1462e52e1797a02c97073eed0b7f92 > files > 517

python-docs-2.6.5-2.5mdv2010.2.i586.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Supporting Cyclic Garbage Collection &mdash; Python v2.6.5 documentation</title>
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '2.6.5',
        COLLAPSE_MODINDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within Python v2.6.5 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="author" title="About these documents" href="../about.html" />
    <link rel="copyright" title="Copyright" href="../copyright.html" />
    <link rel="top" title="Python v2.6.5 documentation" href="../index.html" />
    <link rel="up" title="Object Implementation Support" href="objimpl.html" />
    <link rel="next" title="Distributing Python Modules" href="../distutils/index.html" />
    <link rel="prev" title="Type Objects" href="typeobj.html" />
    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
 

  </head>
  <body>
    <div class="related">
      <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="../modindex.html" title="Global Module Index"
             accesskey="M">modules</a> |</li>
        <li class="right" >
          <a href="../distutils/index.html" title="Distributing Python Modules"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="typeobj.html" title="Type Objects"
             accesskey="P">previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="../index.html">Python v2.6.5 documentation</a> &raquo;</li>

          <li><a href="index.html" >Python/C API Reference Manual</a> &raquo;</li>
          <li><a href="objimpl.html" accesskey="U">Object Implementation Support</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="supporting-cyclic-garbage-collection">
<span id="supporting-cycle-detection"></span><h1>Supporting Cyclic Garbage Collection<a class="headerlink" href="#supporting-cyclic-garbage-collection" title="Permalink to this headline">¶</a></h1>
<p>Python&#8217;s support for detecting and collecting garbage which involves circular
references requires support from object types which are &#8220;containers&#8221; for other
objects which may also be containers.  Types which do not store references to
other objects, or which only store references to atomic types (such as numbers
or strings), do not need to provide any explicit support for garbage
collection.</p>
<p>To create a container type, the <a title="tp_flags" class="reference external" href="typeobj.html#tp_flags"><tt class="xref docutils literal"><span class="pre">tp_flags</span></tt></a> field of the type object must
include the <a title="Py_TPFLAGS_HAVE_GC" class="reference external" href="typeobj.html#Py_TPFLAGS_HAVE_GC"><tt class="xref docutils literal"><span class="pre">Py_TPFLAGS_HAVE_GC</span></tt></a> and provide an implementation of the
<a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler.  If instances of the type are mutable, a
<a title="tp_clear" class="reference external" href="typeobj.html#tp_clear"><tt class="xref docutils literal"><span class="pre">tp_clear</span></tt></a> implementation must also be provided.</p>
<dl class="data">
<dt>
<tt class="descname">Py_TPFLAGS_HAVE_GC</tt></dt>
<dd>Objects with a type with this flag set must conform with the rules
documented here.  For convenience these objects will be referred to as
container objects.</dd></dl>

<p>Constructors for container types must conform to two rules:</p>
<ol class="arabic simple">
<li>The memory for the object must be allocated using <a title="PyObject_GC_New" class="reference internal" href="#PyObject_GC_New"><tt class="xref docutils literal"><span class="pre">PyObject_GC_New()</span></tt></a>
or <tt class="xref docutils literal"><span class="pre">PyObject_GC_VarNew()</span></tt>.</li>
<li>Once all the fields which may contain references to other containers are
initialized, it must call <a title="PyObject_GC_Track" class="reference internal" href="#PyObject_GC_Track"><tt class="xref docutils literal"><span class="pre">PyObject_GC_Track()</span></tt></a>.</li>
</ol>
<dl class="cfunction">
<dt id="PyObject_GC_New">
TYPE* <tt class="descname">PyObject_GC_New</tt><big>(</big>TYPE, <a title="PyTypeObject" class="reference external" href="type.html#PyTypeObject">PyTypeObject</a><em> *type</em><big>)</big><a class="headerlink" href="#PyObject_GC_New" title="Permalink to this definition">¶</a></dt>
<dd>Analogous to <a title="PyObject_New" class="reference external" href="allocation.html#PyObject_New"><tt class="xref docutils literal"><span class="pre">PyObject_New()</span></tt></a> but for container objects with the
<a title="Py_TPFLAGS_HAVE_GC" class="reference external" href="typeobj.html#Py_TPFLAGS_HAVE_GC"><tt class="xref docutils literal"><span class="pre">Py_TPFLAGS_HAVE_GC</span></tt></a> flag set.</dd></dl>

<dl class="cfunction">
<dt id="PyObject_GC_NewVar">
TYPE* <tt class="descname">PyObject_GC_NewVar</tt><big>(</big>TYPE, <a title="PyTypeObject" class="reference external" href="type.html#PyTypeObject">PyTypeObject</a><em> *type</em>, Py_ssize_t<em> size</em><big>)</big><a class="headerlink" href="#PyObject_GC_NewVar" title="Permalink to this definition">¶</a></dt>
<dd><p>Analogous to <a title="PyObject_NewVar" class="reference external" href="allocation.html#PyObject_NewVar"><tt class="xref docutils literal"><span class="pre">PyObject_NewVar()</span></tt></a> but for container objects with the
<a title="Py_TPFLAGS_HAVE_GC" class="reference external" href="typeobj.html#Py_TPFLAGS_HAVE_GC"><tt class="xref docutils literal"><span class="pre">Py_TPFLAGS_HAVE_GC</span></tt></a> flag set.</p>
<p class="versionchanged">
<span class="versionmodified">Changed in version 2.5: </span>This function used an <tt class="xref docutils literal"><span class="pre">int</span></tt> type for <em>size</em>. This might require
changes in your code for properly supporting 64-bit systems.</p>
</dd></dl>

<dl class="cfunction">
<dt id="PyObject_GC_Resize">
TYPE* <tt class="descname">PyObject_GC_Resize</tt><big>(</big>TYPE, <a title="PyVarObject" class="reference external" href="structures.html#PyVarObject">PyVarObject</a><em> *op</em>, Py_ssize_t<em> newsize</em><big>)</big><a class="headerlink" href="#PyObject_GC_Resize" title="Permalink to this definition">¶</a></dt>
<dd><p>Resize an object allocated by <a title="PyObject_NewVar" class="reference external" href="allocation.html#PyObject_NewVar"><tt class="xref docutils literal"><span class="pre">PyObject_NewVar()</span></tt></a>.  Returns the
resized object or <em>NULL</em> on failure.</p>
<p class="versionchanged">
<span class="versionmodified">Changed in version 2.5: </span>This function used an <tt class="xref docutils literal"><span class="pre">int</span></tt> type for <em>newsize</em>. This might
require changes in your code for properly supporting 64-bit systems.</p>
</dd></dl>

<dl class="cfunction">
<dt id="PyObject_GC_Track">
void <tt class="descname">PyObject_GC_Track</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *op</em><big>)</big><a class="headerlink" href="#PyObject_GC_Track" title="Permalink to this definition">¶</a></dt>
<dd>Adds the object <em>op</em> to the set of container objects tracked by the
collector.  The collector can run at unexpected times so objects must be
valid while being tracked.  This should be called once all the fields
followed by the <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler become valid, usually near the
end of the constructor.</dd></dl>

<dl class="cfunction">
<dt id="_PyObject_GC_TRACK">
void <tt class="descname">_PyObject_GC_TRACK</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *op</em><big>)</big><a class="headerlink" href="#_PyObject_GC_TRACK" title="Permalink to this definition">¶</a></dt>
<dd>A macro version of <a title="PyObject_GC_Track" class="reference internal" href="#PyObject_GC_Track"><tt class="xref docutils literal"><span class="pre">PyObject_GC_Track()</span></tt></a>.  It should not be used for
extension modules.</dd></dl>

<p>Similarly, the deallocator for the object must conform to a similar pair of
rules:</p>
<ol class="arabic simple">
<li>Before fields which refer to other containers are invalidated,
<a title="PyObject_GC_UnTrack" class="reference internal" href="#PyObject_GC_UnTrack"><tt class="xref docutils literal"><span class="pre">PyObject_GC_UnTrack()</span></tt></a> must be called.</li>
<li>The object&#8217;s memory must be deallocated using <a title="PyObject_GC_Del" class="reference internal" href="#PyObject_GC_Del"><tt class="xref docutils literal"><span class="pre">PyObject_GC_Del()</span></tt></a>.</li>
</ol>
<dl class="cfunction">
<dt id="PyObject_GC_Del">
void <tt class="descname">PyObject_GC_Del</tt><big>(</big>void<em> *op</em><big>)</big><a class="headerlink" href="#PyObject_GC_Del" title="Permalink to this definition">¶</a></dt>
<dd>Releases memory allocated to an object using <a title="PyObject_GC_New" class="reference internal" href="#PyObject_GC_New"><tt class="xref docutils literal"><span class="pre">PyObject_GC_New()</span></tt></a> or
<a title="PyObject_GC_NewVar" class="reference internal" href="#PyObject_GC_NewVar"><tt class="xref docutils literal"><span class="pre">PyObject_GC_NewVar()</span></tt></a>.</dd></dl>

<dl class="cfunction">
<dt id="PyObject_GC_UnTrack">
void <tt class="descname">PyObject_GC_UnTrack</tt><big>(</big>void<em> *op</em><big>)</big><a class="headerlink" href="#PyObject_GC_UnTrack" title="Permalink to this definition">¶</a></dt>
<dd>Remove the object <em>op</em> from the set of container objects tracked by the
collector.  Note that <a title="PyObject_GC_Track" class="reference internal" href="#PyObject_GC_Track"><tt class="xref docutils literal"><span class="pre">PyObject_GC_Track()</span></tt></a> can be called again on
this object to add it back to the set of tracked objects.  The deallocator
(<a title="tp_dealloc" class="reference external" href="typeobj.html#tp_dealloc"><tt class="xref docutils literal"><span class="pre">tp_dealloc</span></tt></a> handler) should call this for the object before any of
the fields used by the <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler become invalid.</dd></dl>

<dl class="cfunction">
<dt id="_PyObject_GC_UNTRACK">
void <tt class="descname">_PyObject_GC_UNTRACK</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *op</em><big>)</big><a class="headerlink" href="#_PyObject_GC_UNTRACK" title="Permalink to this definition">¶</a></dt>
<dd>A macro version of <a title="PyObject_GC_UnTrack" class="reference internal" href="#PyObject_GC_UnTrack"><tt class="xref docutils literal"><span class="pre">PyObject_GC_UnTrack()</span></tt></a>.  It should not be used for
extension modules.</dd></dl>

<p>The <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler accepts a function parameter of this type:</p>
<dl class="ctype">
<dt id="visitproc">
int <tt class="descname">(*visitproc)</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *object</em>, void<em> *arg</em><big>)</big><a class="headerlink" href="#visitproc" title="Permalink to this definition">¶</a></dt>
<dd>Type of the visitor function passed to the <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler.
The function should be called with an object to traverse as <em>object</em> and
the third parameter to the <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler as <em>arg</em>.  The
Python core uses several visitor functions to implement cyclic garbage
detection; it&#8217;s not expected that users will need to write their own
visitor functions.</dd></dl>

<p>The <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handler must have the following type:</p>
<dl class="ctype">
<dt id="traverseproc">
int <tt class="descname">(*traverseproc)</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *self</em>, <a title="visitproc" class="reference internal" href="#visitproc">visitproc</a><em> visit</em>, void<em> *arg</em><big>)</big><a class="headerlink" href="#traverseproc" title="Permalink to this definition">¶</a></dt>
<dd>Traversal function for a container object.  Implementations must call the
<em>visit</em> function for each object directly contained by <em>self</em>, with the
parameters to <em>visit</em> being the contained object and the <em>arg</em> value passed
to the handler.  The <em>visit</em> function must not be called with a <em>NULL</em>
object argument.  If <em>visit</em> returns a non-zero value that value should be
returned immediately.</dd></dl>

<p>To simplify writing <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> handlers, a <a title="Py_VISIT" class="reference internal" href="#Py_VISIT"><tt class="xref docutils literal"><span class="pre">Py_VISIT()</span></tt></a> macro is
provided.  In order to use this macro, the <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a> implementation
must name its arguments exactly <em>visit</em> and <em>arg</em>:</p>
<dl class="cfunction">
<dt id="Py_VISIT">
void <tt class="descname">Py_VISIT</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *o</em><big>)</big><a class="headerlink" href="#Py_VISIT" title="Permalink to this definition">¶</a></dt>
<dd><p>Call the <em>visit</em> callback, with arguments <em>o</em> and <em>arg</em>. If <em>visit</em> returns
a non-zero value, then return it.  Using this macro, <a title="tp_traverse" class="reference external" href="typeobj.html#tp_traverse"><tt class="xref docutils literal"><span class="pre">tp_traverse</span></tt></a>
handlers look like:</p>
<div class="highlight-c"><div class="highlight"><pre><span class="k">static</span> <span class="kt">int</span>
<span class="nf">my_traverse</span><span class="p">(</span><span class="n">Noddy</span> <span class="o">*</span><span class="n">self</span><span class="p">,</span> <span class="n">visitproc</span> <span class="n">visit</span><span class="p">,</span> <span class="kt">void</span> <span class="o">*</span><span class="n">arg</span><span class="p">)</span>
<span class="p">{</span>
    <span class="n">Py_VISIT</span><span class="p">(</span><span class="n">self</span><span class="o">-&gt;</span><span class="n">foo</span><span class="p">);</span>
    <span class="n">Py_VISIT</span><span class="p">(</span><span class="n">self</span><span class="o">-&gt;</span><span class="n">bar</span><span class="p">);</span>
    <span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
<span class="p">}</span>
</pre></div>
</div>
<p class="versionadded">
<span class="versionmodified">New in version 2.4.</span></p>
</dd></dl>

<p>The <a title="tp_clear" class="reference external" href="typeobj.html#tp_clear"><tt class="xref docutils literal"><span class="pre">tp_clear</span></tt></a> handler must be of the <a title="inquiry" class="reference internal" href="#inquiry"><tt class="xref docutils literal"><span class="pre">inquiry</span></tt></a> type, or <em>NULL</em>
if the object is immutable.</p>
<dl class="ctype">
<dt id="inquiry">
int <tt class="descname">(*inquiry)</tt><big>(</big><a title="PyObject" class="reference external" href="structures.html#PyObject">PyObject</a><em> *self</em><big>)</big><a class="headerlink" href="#inquiry" title="Permalink to this definition">¶</a></dt>
<dd>Drop references that may have created reference cycles.  Immutable objects
do not have to define this method since they can never directly create
reference cycles.  Note that the object must still be valid after calling
this method (don&#8217;t just call <a title="Py_DECREF" class="reference external" href="refcounting.html#Py_DECREF"><tt class="xref docutils literal"><span class="pre">Py_DECREF()</span></tt></a> on a reference).  The
collector will call this method if it detects that this object is involved
in a reference cycle.</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <h4>Previous topic</h4>
            <p class="topless"><a href="typeobj.html"
                                  title="previous chapter">Type Objects</a></p>
            <h4>Next topic</h4>
            <p class="topless"><a href="../distutils/index.html"
                                  title="next chapter">Distributing Python Modules</a></p>
            <h3>This Page</h3>
            <ul class="this-page-menu">
              <li><a href="../_sources/c-api/gcsupport.txt"
                     rel="nofollow">Show Source</a></li>
            </ul>
          <div id="searchbox" style="display: none">
            <h3>Quick search</h3>
              <form class="search" action="../search.html" method="get">
                <input type="text" name="q" size="18" />
                <input type="submit" value="Go" />
                <input type="hidden" name="check_keywords" value="yes" />
                <input type="hidden" name="area" value="default" />
              </form>
              <p class="searchtip" style="font-size: 90%">
              Enter search terms or a module, class or function name.
              </p>
          </div>
          <script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <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="../modindex.html" title="Global Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="../distutils/index.html" title="Distributing Python Modules"
             >next</a> |</li>
        <li class="right" >
          <a href="typeobj.html" title="Type Objects"
             >previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="../index.html">Python v2.6.5 documentation</a> &raquo;</li>

          <li><a href="index.html" >Python/C API Reference Manual</a> &raquo;</li>
          <li><a href="objimpl.html" >Object Implementation Support</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
    &copy; <a href="../copyright.html">Copyright</a> 1990-2010, Python Software Foundation.
    <br />
    The Python Software Foundation is a non-profit corporation.  
    <a href="http://www.python.org/psf/donations/">Please donate.</a>
    <br />
    Last updated on Mar 19, 2010.
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.5.
    </div>

  </body>
</html>