<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Robert Kern wrote:
<blockquote
 cite="mid:3d375d730810191309u4b4a5e9dl41350bdbb123e032@mail.gmail.com"
 type="cite">
  <pre wrap="">On Sun, Oct 19, 2008 at 14:28, Lane Brooks <a class="moz-txt-link-rfc2396E" href="mailto:lbrooks@mit.edu"><lbrooks@mit.edu></a> wrote:
  </pre>
</blockquote>
<blockquote
 cite="mid:3d375d730810191309u4b4a5e9dl41350bdbb123e032@mail.gmail.com"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">2. Is my reference counting correct?  Do I need to call the
PyArray_INCREF() on img?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Personally, I always need to double-check my refcounting with
sys.getrefcount() (which, it should be noted, adds its own reference,
so the correct result for sys.getrefcount(foo()) should be 1). In your
actual code, do you have anything else in the Py_BuildValue()? If you
don't, then you don't need to use Py_BuildValue(); you can just return
img.
  </pre>
</blockquote>
<br>
<br>
Thanks for the great tip on sys.getrefcount().  I understand reference
counting a whole lot better now after playing with sys.getrefcount()
function.<br>
<br>
Lane<br>
</body>
</html>